Skip to content

Commit cdc8b8f

Browse files
committed
Organize imports.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1409461 13f79535-47bb-0310-9956-ffa450edef68
1 parent 7ac5dd3 commit cdc8b8f

3 files changed

Lines changed: 5 additions & 9 deletions

File tree

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@
3030
import java.io.Serializable;
3131
import java.io.StringWriter;
3232

33-
import org.apache.commons.csv.CSVFormat.CSVFormatBuilder;
34-
3533
/**
3634
* The format specification of a CSV file.
3735
*

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,11 @@
1717

1818
package org.apache.commons.csv;
1919

20-
import static org.apache.commons.csv.Constants.*;
21-
import static org.junit.Assert.*;
20+
import static org.apache.commons.csv.Constants.CR;
21+
import static org.apache.commons.csv.Constants.CRLF;
22+
import static org.apache.commons.csv.Constants.LF;
23+
import static org.junit.Assert.assertEquals;
24+
import static org.junit.Assert.assertFalse;
2225

2326
import org.apache.commons.csv.CSVFormat.CSVFormatBuilder;
2427
import org.junit.Before;

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,14 @@
1717

1818
package org.apache.commons.csv;
1919

20-
import static org.apache.commons.csv.Constants.CRLF;
2120
import static org.junit.Assert.assertEquals;
22-
import static org.junit.Assert.assertFalse;
2321
import static org.junit.Assert.assertNotNull;
24-
import static org.junit.Assert.assertTrue;
25-
import static org.junit.Assert.fail;
2622

2723
import java.io.ByteArrayInputStream;
2824
import java.io.ByteArrayOutputStream;
2925
import java.io.ObjectInputStream;
3026
import java.io.ObjectOutputStream;
3127

32-
import org.apache.commons.csv.CSVFormat.CSVFormatBuilder;
3328
import org.junit.Test;
3429

3530
/**

0 commit comments

Comments
 (0)