Skip to content

Commit 89bf8c4

Browse files
author
Gary Gregory
committed
Remove Subversion's "@Version $Id$".
1 parent 0c66732 commit 89bf8c4

77 files changed

Lines changed: 0 additions & 77 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/main/java/org/apache/commons/codec/BinaryDecoder.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
/**
2121
* Defines common decoding methods for byte array decoders.
2222
*
23-
* @version $Id$
2423
*/
2524
public interface BinaryDecoder extends Decoder {
2625

src/main/java/org/apache/commons/codec/BinaryEncoder.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
/**
2121
* Defines common encoding methods for byte array encoders.
2222
*
23-
* @version $Id$
2423
*/
2524
public interface BinaryEncoder extends Encoder {
2625

src/main/java/org/apache/commons/codec/CharEncoding.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
*
5454
* @see <a href="http://download.oracle.com/javase/7/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
5555
* @since 1.4
56-
* @version $Id$
5756
*/
5857
public class CharEncoding {
5958
/**

src/main/java/org/apache/commons/codec/Decoder.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
* <p>
2626
* One of the two interfaces at the center of the codec package.
2727
*
28-
* @version $Id$
2928
*/
3029
public interface Decoder {
3130

src/main/java/org/apache/commons/codec/DecoderException.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
* Thrown when there is a failure condition during the decoding process. This exception is thrown when a {@link Decoder}
2222
* encounters a decoding specific exception such as invalid data, or characters outside of the expected range.
2323
*
24-
* @version $Id$
2524
*/
2625
public class DecoderException extends Exception {
2726

src/main/java/org/apache/commons/codec/Encoder.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
* common generic interface which allows a user to pass a generic Object to any Encoder implementation
2525
* in the codec package.
2626
*
27-
* @version $Id$
2827
*/
2928
public interface Encoder {
3029

src/main/java/org/apache/commons/codec/EncoderException.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
* {@link Encoder} encounters a encoding specific exception such as invalid data, inability to calculate a checksum,
2323
* characters outside of the expected range.
2424
*
25-
* @version $Id$
2625
*/
2726
public class EncoderException extends Exception {
2827

src/main/java/org/apache/commons/codec/StringDecoder.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
/**
2121
* Defines common decoding methods for String decoders.
2222
*
23-
* @version $Id$
2423
*/
2524
public interface StringDecoder extends Decoder {
2625

src/main/java/org/apache/commons/codec/StringEncoder.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
/**
2121
* Defines common encoding methods for String encoders.
2222
*
23-
* @version $Id$
2423
*/
2524
public interface StringEncoder extends Encoder {
2625

src/main/java/org/apache/commons/codec/StringEncoderComparator.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
*
2727
* <p>This class is immutable and thread-safe.</p>
2828
*
29-
* @version $Id$
3029
*/
3130
@SuppressWarnings("rawtypes")
3231
// TODO ought to implement Comparator<String> but that's not possible whilst maintaining binary compatibility.

0 commit comments

Comments
 (0)