Skip to content

Commit d30fa83

Browse files
committed
Remove unused imports
1 parent 7561f33 commit d30fa83

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

src/main/java/org/skyscreamer/jsonassert/JSONAssert.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
package org.skyscreamer.jsonassert;
22

3-
import static org.skyscreamer.jsonassert.JSONCompareMode.LENIENT;
4-
import static org.skyscreamer.jsonassert.JSONCompareMode.STRICT;
5-
63
import org.json.JSONArray;
74
import org.json.JSONException;
85
import org.json.JSONObject;

src/test/java/org/skyscreamer/jsonassert/JSONAssertTest.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
package org.skyscreamer.jsonassert;
22

3-
import java.util.Arrays;
3+
import static org.skyscreamer.jsonassert.JSONCompareMode.LENIENT;
4+
import static org.skyscreamer.jsonassert.JSONCompareMode.STRICT;
45

56
import org.json.JSONException;
67
import org.junit.Assert;
78
import org.junit.Test;
89

9-
import static org.skyscreamer.jsonassert.JSONCompareMode.*;
10-
1110
/**
1211
* Unit tests for {@link JSONAssert}
1312
*/

src/test/java/org/skyscreamer/jsonassert/JSONCompareTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@
55
import static org.junit.Assert.assertTrue;
66
import static org.skyscreamer.jsonassert.JSONCompare.compareJSON;
77
import static org.skyscreamer.jsonassert.JSONCompareMode.LENIENT;
8-
import static org.skyscreamer.jsonassert.JSONCompareMode.NON_EXTENSIBLE;
98

109
import org.hamcrest.Description;
1110
import org.hamcrest.Matcher;
1211
import org.json.JSONException;
13-
import org.junit.Ignore;
1412
import org.junit.Test;
1513
import org.junit.internal.matchers.TypeSafeMatcher;
1614

0 commit comments

Comments
 (0)