Missed a semicolon

This commit is contained in:
Vhati 2013-08-28 17:41:59 -04:00
parent aa9ca9a97a
commit 7997dda212

View file

@ -418,7 +418,7 @@ public class FTLDat {
*/ */
public File getFile( String innerPath ) { public File getFile( String innerPath ) {
if ( innerPath.indexOf("\\") != -1 ) throw new IllegalArgumentException( "InnerPath contains backslashes: "+ 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. // Check if the file is inside rootDir.
File parentDir = tmpFile.getParentFile(); File parentDir = tmpFile.getParentFile();