Organize imports.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1409461 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2012-11-14 21:56:46 +00:00
parent 7ac5dd3ec6
commit cdc8b8f2b1
3 changed files with 5 additions and 9 deletions

View File

@ -30,8 +30,6 @@ import java.io.Reader;
import java.io.Serializable;
import java.io.StringWriter;
import org.apache.commons.csv.CSVFormat.CSVFormatBuilder;
/**
* The format specification of a CSV file.
*

View File

@ -17,8 +17,11 @@
package org.apache.commons.csv;
import static org.apache.commons.csv.Constants.*;
import static org.junit.Assert.*;
import static org.apache.commons.csv.Constants.CR;
import static org.apache.commons.csv.Constants.CRLF;
import static org.apache.commons.csv.Constants.LF;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import org.apache.commons.csv.CSVFormat.CSVFormatBuilder;
import org.junit.Before;

View File

@ -17,19 +17,14 @@
package org.apache.commons.csv;
import static org.apache.commons.csv.Constants.CRLF;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import org.apache.commons.csv.CSVFormat.CSVFormatBuilder;
import org.junit.Test;
/**