Skip to content

Commit 431f823

Browse files
committed
Remove useless and old SVN @Version Javadoc tags.
1 parent 299fdcc commit 431f823

20 files changed

+0
-38
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
* Utility class for input parameter validation.
2424
*
2525
* TODO Replace usage with {@link Objects} when we switch to Java 7.
26-
*
27-
* @version $Id$
2826
*/
2927
final class Assertions {
3028

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,6 @@
152152
* <p>
153153
* This class is immutable.
154154
* </p>
155-
*
156-
* @version $Id$
157155
*/
158156
public final class CSVFormat implements Serializable {
159157

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,6 @@
129129
* Internal parser state is completely covered by the format and the reader-state.
130130
* </p>
131131
*
132-
* @version $Id$
133-
*
134132
* @see <a href="package-summary.html">package documentation for more details</a>
135133
*/
136134
public final class CSVParser implements Iterable<CSVRecord>, Closeable {

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@
2929

3030
/**
3131
* Prints values in a CSV format.
32-
*
33-
* @version $Id$
3432
*/
3533
public final class CSVPrinter implements Flushable, Closeable {
3634

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@
2727

2828
/**
2929
* A CSV record parsed from a CSV file.
30-
*
31-
* @version $Id$
3230
*/
3331
public final class CSVRecord implements Serializable, Iterable<String> {
3432

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919

2020
/**
2121
* Constants for this package.
22-
*
23-
* @version $Id$
2422
*/
2523
final class Constants {
2624

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
* In particular the reader supports a look-ahead option, which allows you to see the next char returned by
3333
* {@link #read()}. This reader also tracks how many characters have been read with {@link #getPosition()}.
3434
* </p>
35-
*
36-
* @version $Id$
3735
*/
3836
final class ExtendedBufferedReader extends BufferedReader {
3937

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@
3535

3636
/**
3737
* Lexical analyzer.
38-
*
39-
* @version $Id$
4038
*/
4139
final class Lexer implements Closeable {
4240

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
/**
2020
* Defines quote behavior when printing.
2121
*
22-
* @version $Id$
2322
*/
2423
public enum QuoteMode {
2524

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
* Internal token representation.
2424
* <p/>
2525
* It is used as contract between the lexer and the parser.
26-
*
27-
* @version $Id$
2826
*/
2927
final class Token {
3028

0 commit comments

Comments
 (0)