Minor code cleanup

This commit is contained in:
Jean-Rémi Desjardins
2014-12-03 09:56:34 -08:00
parent 015c61ad69
commit ca736e55d3
68 changed files with 126 additions and 126 deletions
@@ -132,7 +132,7 @@ public class ForkMain {
private static class Run {
void run(ObjectInputStream is, ObjectOutputStream os) throws Exception {
void run(ObjectInputStream is, ObjectOutputStream os) {
try {
runTests(is, os);
} catch (RunAborted e) {
@@ -4,6 +4,6 @@
package sbt;
public enum ForkTags {
Error, Warn, Info, Debug, Done;
Error, Warn, Info, Debug, Done
}