Missed a semicolon
This commit is contained in:
parent
aa9ca9a97a
commit
7997dda212
1 changed files with 1 additions and 1 deletions
|
@ -418,7 +418,7 @@ public class FTLDat {
|
|||
*/
|
||||
public File getFile( String innerPath ) {
|
||||
if ( innerPath.indexOf("\\") != -1 ) throw new IllegalArgumentException( "InnerPath contains backslashes: "+ innerPath );
|
||||
File tmpFile = new File( rootDir, innerPath )
|
||||
File tmpFile = new File( rootDir, innerPath );
|
||||
|
||||
// Check if the file is inside rootDir.
|
||||
File parentDir = tmpFile.getParentFile();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue