Skip to content

Commit 633e688

Browse files
committed
Revert accidental changes to imports
1 parent ac82aee commit 633e688

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

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

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

3-
import java.util.ArrayList;
4-
import java.util.HashMap;
5-
import java.util.HashSet;
6-
import java.util.Iterator;
7-
import java.util.List;
8-
import java.util.Map;
9-
import java.util.Set;
10-
import java.util.TreeSet;
11-
123
import org.apache.commons.collections.CollectionUtils;
134
import org.json.JSONArray;
145
import org.json.JSONException;
156
import org.json.JSONObject;
167

8+
import java.util.*;
9+
1710
/**
1811
* Provides the logic to compare two JSON entities. This is the backend to {@link JSONAssert}, but it can
1912
* be programmed against directly to access the functionality. (eg, to make something that works with a

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
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.JSONException;
74
import org.junit.Assert;
85
import org.junit.Test;
96

7+
import static org.skyscreamer.jsonassert.JSONCompareMode.*;
8+
109
/**
1110
* Unit tests for {@link JSONAssert}
1211
*/

0 commit comments

Comments
 (0)