Remove useless and old SVN @version Javadoc tags.

This commit is contained in:
Gary Gregory 2017-08-15 17:40:42 -06:00
parent 299fdccfd6
commit 431f8236e8
20 changed files with 0 additions and 38 deletions

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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> {

View File

@ -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 {

View File

@ -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 {

View File

@ -35,8 +35,6 @@ import java.io.IOException;
/** /**
* Lexical analyzer. * Lexical analyzer.
*
* @version $Id$
*/ */
final class Lexer implements Closeable { final class Lexer implements Closeable {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -41,8 +41,6 @@ import org.junit.Test;
/** /**
* *
*
* @version $Id$
*/ */
public class CSVFormatTest { public class CSVFormatTest {

View File

@ -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 {

View File

@ -54,8 +54,6 @@ import org.junit.Test;
/** /**
* *
*
* @version $Id$
*/ */
public class CSVPrinterTest { public class CSVPrinterTest {

View File

@ -29,8 +29,6 @@ import org.junit.Test;
/** /**
* *
*
* @version $Id$
*/ */
public class ExtendedBufferedReaderTest { public class ExtendedBufferedReaderTest {

View File

@ -40,8 +40,6 @@ import org.junit.Test;
/** /**
* *
*
* @version $Id$
*/ */
public class LexerTest { public class LexerTest {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {