Added commandline interface

This commit is contained in:
Vhati 2013-08-30 15:06:09 -04:00
parent 4a091297ed
commit a585047427
13 changed files with 731 additions and 149 deletions

View file

@ -81,11 +81,11 @@ public class FTLDat {
}
}
finally {
try {if (is != null) is.close();}
catch (IOException e) {}
try {if ( is != null ) is.close();}
catch ( IOException e ) {}
try {if (os != null) os.close();}
catch (IOException e) {}
try {if ( os != null ) os.close();}
catch ( IOException e ) {}
}
}
@ -368,8 +368,8 @@ public class FTLDat {
}
}
finally {
try {if (os != null) os.close();}
catch (IOException e) {}
try {if ( os != null ) os.close();}
catch ( IOException e ) {}
}
}
@ -388,8 +388,8 @@ public class FTLDat {
}
}
finally {
try {if (is != null) is.close();}
catch (IOException e) {}
try {if ( is != null ) is.close();}
catch ( IOException e ) {}
}
}