Commit a4187326 authored by Karsten Loesing's avatar Karsten Loesing
Browse files

Remove unnecessary method call.

parent e50f0204
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -380,7 +380,7 @@ public class ExoneraTorDatabaseImporter {
          parseHistoryFile));
      for (Map.Entry<String, Long> historyEntry :
          nextImportHistory.entrySet()) {
        bw.write(String.valueOf(historyEntry.getValue()) + ","
        bw.write(historyEntry.getValue() + ","
            + historyEntry.getKey() + "\n");
      }
      bw.close();