Skip to content

Commit

Permalink
cleanup imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ingon committed Feb 26, 2020
1 parent e0825ef commit d679c23
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/test/java/dev/ingon/json/zero/ParserBenchmark.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@

import java.util.UUID;

import org.junit.Test;

import dev.ingon.json.zero.hl.JsonMapHandler;
import dev.ingon.json.zero.hl.JsonParser;
import dev.ingon.json.zero.hl.JsonStringHandler;

public class ParserBenchmark {

public static void main(String[] args) {
Expand Down Expand Up @@ -180,7 +174,7 @@ static void runTest(String message, Runnable e) {
// s = e.run();
}
long t2 = System.currentTimeMillis();
// System.out.println(message + " :: " + ((t2 - t1) / (LOOP + 0D)) + " ms\t\t" + s);
System.out.println(message + ", " + ((t2 - t1) / (LOOP + 0D)));
System.out.println(message + " :: " + ((t2 - t1) / (LOOP + 0D)) + " ms\t\t" + s);
// System.out.println(message + ", " + ((t2 - t1) / (LOOP + 0D)));
}
}

0 comments on commit d679c23

Please sign in to comment.