From 907a3bec1eea710f9820e9871d90a42c4bd96056 Mon Sep 17 00:00:00 2001 From: Yanqi Li Date: Mon, 4 Mar 2019 16:04:12 -0500 Subject: [PATCH] Single line import on TestGCEventUJL --- .../com/tagtraum/perf/gcviewer/model/TestGCEventUJL.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/test/java/com/tagtraum/perf/gcviewer/model/TestGCEventUJL.java b/src/test/java/com/tagtraum/perf/gcviewer/model/TestGCEventUJL.java index 4a427261..46cc5e20 100644 --- a/src/test/java/com/tagtraum/perf/gcviewer/model/TestGCEventUJL.java +++ b/src/test/java/com/tagtraum/perf/gcviewer/model/TestGCEventUJL.java @@ -7,7 +7,8 @@ import com.tagtraum.perf.gcviewer.model.AbstractGCEvent.Type; import static org.hamcrest.Matchers.closeTo; -import static org.junit.Assert.*; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertThat; public class TestGCEventUJL { GCEventUJL parentGCEvent; @@ -91,4 +92,4 @@ private ConcurrentGCEvent createConcurrentGcEvent(double timestamp, int preUsed, return concurrentGCEvent; } -} \ No newline at end of file +}