Removed redundant code, fixed some warnings, other minor fixes

This commit is contained in:
Tim Visée
2015-11-23 22:18:04 +01:00
parent 82bf0f45ca
commit 09067ddbd1
9 changed files with 21 additions and 25 deletions
@@ -744,9 +744,10 @@ public class FlatFile implements DataSource {
for (String l : lines) {
bw.write(l + "\n");
}
} catch (IOException ex) {
ConsoleLogger.showError(ex.getMessage());
return;
} finally {
if (br != null) {
try {
@@ -761,7 +762,6 @@ public class FlatFile implements DataSource {
}
}
}
return;
}
/**