Remove useless and old SVN @version Javadoc tags.
This commit is contained in:
parent
299fdccfd6
commit
431f8236e8
|
@ -23,8 +23,6 @@ import java.util.Objects;
|
||||||
* Utility class for input parameter validation.
|
* Utility class for input parameter validation.
|
||||||
*
|
*
|
||||||
* TODO Replace usage with {@link Objects} when we switch to Java 7.
|
* TODO Replace usage with {@link Objects} when we switch to Java 7.
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
final class Assertions {
|
final class Assertions {
|
||||||
|
|
||||||
|
|
|
@ -152,8 +152,6 @@ import java.util.Set;
|
||||||
* <p>
|
* <p>
|
||||||
* This class is immutable.
|
* This class is immutable.
|
||||||
* </p>
|
* </p>
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public final class CSVFormat implements Serializable {
|
public final class CSVFormat implements Serializable {
|
||||||
|
|
||||||
|
|
|
@ -129,8 +129,6 @@ import java.util.TreeMap;
|
||||||
* Internal parser state is completely covered by the format and the reader-state.
|
* Internal parser state is completely covered by the format and the reader-state.
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* @version $Id$
|
|
||||||
*
|
|
||||||
* @see <a href="package-summary.html">package documentation for more details</a>
|
* @see <a href="package-summary.html">package documentation for more details</a>
|
||||||
*/
|
*/
|
||||||
public final class CSVParser implements Iterable<CSVRecord>, Closeable {
|
public final class CSVParser implements Iterable<CSVRecord>, Closeable {
|
||||||
|
|
|
@ -29,8 +29,6 @@ import java.sql.SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Prints values in a CSV format.
|
* Prints values in a CSV format.
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public final class CSVPrinter implements Flushable, Closeable {
|
public final class CSVPrinter implements Flushable, Closeable {
|
||||||
|
|
||||||
|
|
|
@ -27,8 +27,6 @@ import java.util.Map.Entry;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A CSV record parsed from a CSV file.
|
* A CSV record parsed from a CSV file.
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public final class CSVRecord implements Serializable, Iterable<String> {
|
public final class CSVRecord implements Serializable, Iterable<String> {
|
||||||
|
|
||||||
|
|
|
@ -19,8 +19,6 @@ package org.apache.commons.csv;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constants for this package.
|
* Constants for this package.
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
final class Constants {
|
final class Constants {
|
||||||
|
|
||||||
|
|
|
@ -32,8 +32,6 @@ import java.io.Reader;
|
||||||
* In particular the reader supports a look-ahead option, which allows you to see the next char returned by
|
* In particular the reader supports a look-ahead option, which allows you to see the next char returned by
|
||||||
* {@link #read()}. This reader also tracks how many characters have been read with {@link #getPosition()}.
|
* {@link #read()}. This reader also tracks how many characters have been read with {@link #getPosition()}.
|
||||||
* </p>
|
* </p>
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
final class ExtendedBufferedReader extends BufferedReader {
|
final class ExtendedBufferedReader extends BufferedReader {
|
||||||
|
|
||||||
|
|
|
@ -35,8 +35,6 @@ import java.io.IOException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Lexical analyzer.
|
* Lexical analyzer.
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
final class Lexer implements Closeable {
|
final class Lexer implements Closeable {
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,6 @@ package org.apache.commons.csv;
|
||||||
/**
|
/**
|
||||||
* Defines quote behavior when printing.
|
* Defines quote behavior when printing.
|
||||||
*
|
*
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public enum QuoteMode {
|
public enum QuoteMode {
|
||||||
|
|
||||||
|
|
|
@ -23,8 +23,6 @@ import static org.apache.commons.csv.Token.Type.INVALID;
|
||||||
* Internal token representation.
|
* Internal token representation.
|
||||||
* <p/>
|
* <p/>
|
||||||
* It is used as contract between the lexer and the parser.
|
* It is used as contract between the lexer and the parser.
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
final class Token {
|
final class Token {
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,6 @@ package org.apache.commons.csv;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class AssertionsTest {
|
public class AssertionsTest {
|
||||||
|
|
||||||
|
|
|
@ -42,8 +42,6 @@ import org.junit.runners.Parameterized.Parameters;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parse tests using test files
|
* Parse tests using test files
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
@RunWith(Parameterized.class)
|
@RunWith(Parameterized.class)
|
||||||
public class CSVFileParserTest {
|
public class CSVFileParserTest {
|
||||||
|
|
|
@ -41,8 +41,6 @@ import org.junit.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class CSVFormatTest {
|
public class CSVFormatTest {
|
||||||
|
|
||||||
|
|
|
@ -56,8 +56,6 @@ import org.junit.Test;
|
||||||
* The test are organized in three different sections: The 'setter/getter' section, the lexer section and finally the
|
* The test are organized in three different sections: The 'setter/getter' section, the lexer section and finally the
|
||||||
* parser section. In case a test fails, you should follow a top-down approach for fixing a potential bug (its likely
|
* parser section. In case a test fails, you should follow a top-down approach for fixing a potential bug (its likely
|
||||||
* that the parser itself fails if the lexer has problems...).
|
* that the parser itself fails if the lexer has problems...).
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class CSVParserTest {
|
public class CSVParserTest {
|
||||||
|
|
||||||
|
|
|
@ -54,8 +54,6 @@ import org.junit.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class CSVPrinterTest {
|
public class CSVPrinterTest {
|
||||||
|
|
||||||
|
|
|
@ -29,8 +29,6 @@ import org.junit.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class ExtendedBufferedReaderTest {
|
public class ExtendedBufferedReaderTest {
|
||||||
|
|
||||||
|
|
|
@ -40,8 +40,6 @@ import org.junit.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class LexerTest {
|
public class LexerTest {
|
||||||
|
|
||||||
|
|
|
@ -35,8 +35,6 @@ import org.apache.commons.io.IOUtils;
|
||||||
* Basic test harness.
|
* Basic test harness.
|
||||||
*
|
*
|
||||||
* Requires test file to be downloaded separately.
|
* Requires test file to be downloaded separately.
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("boxing")
|
@SuppressWarnings("boxing")
|
||||||
public class PerformanceTest {
|
public class PerformanceTest {
|
||||||
|
|
|
@ -24,8 +24,6 @@ import org.junit.Assert;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Utility methods for test cases
|
* Utility methods for test cases
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
final class Utils {
|
final class Utils {
|
||||||
|
|
||||||
|
|
|
@ -39,8 +39,6 @@ import org.junit.Test;
|
||||||
* Tests performance.
|
* Tests performance.
|
||||||
*
|
*
|
||||||
* To run this test, use: mvn test -Dtest=PeformanceTest
|
* To run this test, use: mvn test -Dtest=PeformanceTest
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("boxing") // test code
|
@SuppressWarnings("boxing") // test code
|
||||||
public class PerformanceTest {
|
public class PerformanceTest {
|
||||||
|
|
Loading…
Reference in New Issue