Compiler throws warnings all over the place about our close methods, this one is no different.

This commit is contained in:
GJ 2013-10-07 07:56:13 -04:00
parent de964a3a60
commit d8f3a54f9b

View File

@ -401,14 +401,7 @@ public final class FlatfileDatabaseManager implements DatabaseManager {
e.printStackTrace();
}
finally {
// Silly inlining of tryClose() because the compiler is giving a warning when I use tryClose()
try {
if (in != null) {
in.close();
}
}
catch (IOException e) {
}
tryClose(in);
}
}