Fix the Cache

This commit is contained in:
Xephi
2014-08-30 04:05:22 +02:00
parent 907d70d60d
commit 6e17b540f5
2 changed files with 47 additions and 42 deletions
@@ -675,10 +675,7 @@ public class FlatFileThread extends Thread implements DataSource {
while ((br.readLine()) != null) {
result++;
}
} catch (FileNotFoundException ex) {
ConsoleLogger.showError(ex.getMessage());
return result;
} catch (IOException ex) {
} catch (Exception ex) {
ConsoleLogger.showError(ex.getMessage());
return result;
} finally {