Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
amrabed committed Jun 9, 2015
1 parent 4aadc79 commit f59653c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/edu/vt/rhids/common/Database.java
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public void dump(String id) throws FileNotFoundException
Logger.log("Dumping database to " + file, Verbosity.MEDIUM);
for (BoSC bosc : keySet())
{
out.println(bosc);
out.println(bosc + "\t" + get(bosc));
}
Logger.log("Done", Verbosity.MEDIUM);
}
Expand Down

0 comments on commit f59653c

Please sign in to comment.