Skip to content

Commit 42afea8

Browse files
committed
Organize imports, don't use wildcard imports
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1742177 13f79535-47bb-0310-9956-ffa450edef68
1 parent b6f0655 commit 42afea8

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

src/test/java/org/apache/commons/csv/CSVFormatTest.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,15 @@
2121
import static org.apache.commons.csv.Constants.CR;
2222
import static org.apache.commons.csv.Constants.CRLF;
2323
import static org.apache.commons.csv.Constants.LF;
24-
import static org.junit.Assert.*;
24+
import static org.junit.Assert.assertArrayEquals;
25+
import static org.junit.Assert.assertEquals;
26+
import static org.junit.Assert.assertFalse;
27+
import static org.junit.Assert.assertNotNull;
28+
import static org.junit.Assert.assertNotSame;
29+
import static org.junit.Assert.assertTrue;
2530

2631
import java.io.ByteArrayInputStream;
2732
import java.io.ByteArrayOutputStream;
28-
import java.io.IOException;
2933
import java.io.ObjectInputStream;
3034
import java.io.ObjectOutputStream;
3135
import java.util.Arrays;

0 commit comments

Comments
 (0)