Skip to content

Commit

Permalink
Remove Subversion's "@Version $Id$".
Browse files Browse the repository at this point in the history
  • Loading branch information
Gary Gregory authored and tmousaw-ptc committed May 20, 2019
1 parent dce40d8 commit d28720e
Show file tree
Hide file tree
Showing 77 changed files with 0 additions and 77 deletions.
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/BinaryDecoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
/**
* Defines common decoding methods for byte array decoders.
*
* @version $Id$
*/
public interface BinaryDecoder extends Decoder {

Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/BinaryEncoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
/**
* Defines common encoding methods for byte array encoders.
*
* @version $Id$
*/
public interface BinaryEncoder extends Encoder {

Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/CharEncoding.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
*
* @see <a href="http://download.oracle.com/javase/7/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
* @since 1.4
* @version $Id$
*/
public class CharEncoding {
/**
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/Decoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
* <p>
* One of the two interfaces at the center of the codec package.
*
* @version $Id$
*/
public interface Decoder {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
* Thrown when there is a failure condition during the decoding process. This exception is thrown when a {@link Decoder}
* encounters a decoding specific exception such as invalid data, or characters outside of the expected range.
*
* @version $Id$
*/
public class DecoderException extends Exception {

Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/Encoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
* common generic interface which allows a user to pass a generic Object to any Encoder implementation
* in the codec package.
*
* @version $Id$
*/
public interface Encoder {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
* {@link Encoder} encounters a encoding specific exception such as invalid data, inability to calculate a checksum,
* characters outside of the expected range.
*
* @version $Id$
*/
public class EncoderException extends Exception {

Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/StringDecoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
/**
* Defines common decoding methods for String decoders.
*
* @version $Id$
*/
public interface StringDecoder extends Decoder {

Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/StringEncoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
/**
* Defines common encoding methods for String encoders.
*
* @version $Id$
*/
public interface StringEncoder extends Encoder {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
*
* <p>This class is immutable and thread-safe.</p>
*
* @version $Id$
*/
@SuppressWarnings("rawtypes")
// TODO ought to implement Comparator<String> but that's not possible whilst maintaining binary compatibility.
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/binary/Base32.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
* @see <a href="http://www.ietf.org/rfc/rfc4648.txt">RFC 4648</a>
*
* @since 1.5
* @version $Id$
*/
public class Base32 extends BaseNCodec {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
* character encodings which are compatible with the lower 127 ASCII chart (ISO-8859-1, Windows-1252, UTF-8, etc).
* </p>
*
* @version $Id$
* @see <a href="http://www.ietf.org/rfc/rfc4648.txt">RFC 4648</a>
* @since 1.5
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
* final padding will be omitted and the resulting data will be incomplete/inconsistent.
* </p>
*
* @version $Id$
* @see <a href="http://www.ietf.org/rfc/rfc4648.txt">RFC 4648</a>
* @since 1.5
*/
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/binary/Base64.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
*
* @see <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>
* @since 1.0
* @version $Id$
*/
public class Base64 extends BaseNCodec {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
* character encodings which are compatible with the lower 127 ASCII chart (ISO-8859-1, Windows-1252, UTF-8, etc).
* </p>
*
* @version $Id$
* @see <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>
* @since 1.4
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
* final padding will be omitted and the resulting data will be incomplete/inconsistent.
* </p>
*
* @version $Id$
* @see <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>
* @since 1.4
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
* This class is thread-safe.
* </p>
*
* @version $Id$
*/
public abstract class BaseNCodec implements BinaryEncoder, BinaryDecoder {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
* Abstract superclass for Base-N input streams.
*
* @since 1.5
* @version $Id$
*/
public class BaseNCodecInputStream extends FilterInputStream {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
* </p>
*
* @since 1.5
* @version $Id$
*/
public class BaseNCodecOutputStream extends FilterOutputStream {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
* TODO: also might be good to generate boolean[] from byte[] et cetera.
*
* @since 1.3
* @version $Id$
*/
public class BinaryCodec implements BinaryDecoder, BinaryEncoder {
/*
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/binary/Hex.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
* This class is thread-safe.
*
* @since 1.1
* @version $Id$
*/
public class Hex implements BinaryEncoder, BinaryDecoder {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
*
* @see CharEncoding
* @see <a href="http://download.oracle.com/javase/7/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
* @version $Id$
* @since 1.4
*/
public class StringUtils {
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/digest/B64.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
* This class is immutable and thread-safe.
* </p>
*
* @version $Id$
* @since 1.7
*/
class B64 {
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/digest/Crypt.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
* <p>
* This class is immutable and thread-safe.
*
* @version $Id$
* @since 1.7
*/
public class Crypt {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
* String hdigest = new DigestUtils(SHA_224).digestAsHex(new File("pom.xml"));
* </pre>
* @see MessageDigestAlgorithms
* @version $Id$
*/
public class DigestUtils {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
* "http://docs.oracle.com/javase/9/security/oracleproviders.htm#JSSEC-GUID-A47B1249-593C-4C38-A0D0-68FA7681E0A7">
* Java 9 Cryptography Architecture Sun Providers Documentation</a>
* @since 1.10
* @version $Id$
*/
public enum HmacAlgorithms {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@
* String hexNot = hm1.hmacHex(new File("NOTICE.txt"));
* </pre>
* @since 1.10
* @version $Id$
*/
public final class HmacUtils {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
* <p>
* This class is immutable and thread-safe.
*
* @version $Id$
* @since 1.7
*/
public class Md5Crypt {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
* @see <a href="http://dx.doi.org/10.6028/NIST.FIPS.180-4">FIPS PUB 180-4</a>
* @see <a href="http://dx.doi.org/10.6028/NIST.FIPS.202">FIPS PUB 202</a>
* @since 1.7
* @version $Id$
*/
public class MessageDigestAlgorithms {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
* <p>
* This class is immutable and thread-safe.
*
* @version $Id$
* @since 1.7
*/
public class Sha2Crypt {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
* <p>
* This class is immutable and thread-safe.
*
* @version $Id$
* @since 1.7
*/
public class UnixCrypt {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@
* @see <a href="http://en.wikipedia.org/wiki/Daitch%E2%80%93Mokotoff_Soundex"> Wikipedia - Daitch-Mokotoff Soundex</a>
* @see <a href="http://www.avotaynu.com/soundex.htm">Avotaynu - Soundexing and Genealogy</a>
*
* @version $Id$
* @since 1.10
*/
public class DaitchMokotoffSoundex implements StringEncoder {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
* @see <a href="http://drdobbs.com/184401251?pgno=2">Original Article</a>
* @see <a href="http://en.wikipedia.org/wiki/Metaphone">http://en.wikipedia.org/wiki/Metaphone</a>
*
* @version $Id$
*/
public class DoubleMetaphone implements StringEncoder {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
* is used to ensure safe publication of the value between threads, and must not invoke {@link #setMaxCodeLen(int)}
* after initial setup.
*
* @version $Id$
*/
public class Metaphone implements StringEncoder {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@
* @see <a href="http://www.dropby.com/NYSIIS.html">NYSIIS on dropby.com</a>
* @see Soundex
* @since 1.7
* @version $Id$
*/
public class Nysiis implements StringEncoder {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
*
* <p>This class is immutable and thread-safe.</p>
*
* @version $Id$
*/
public class RefinedSoundex implements StringEncoder {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
* This class is thread-safe.
* Although not strictly immutable, the {@link #maxLength} field is not actually used.
*
* @version $Id$
*/
public class Soundex implements StringEncoder {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
*
* <p>This class is immutable and thread-safe.</p>
*
* @version $Id$
* @since 1.3
*/
final class SoundexUtils {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@
* This class is Not ThreadSafe
* </p>
* @since 1.6
* @version $Id$
*/
public class BeiderMorseEncoder implements StringEncoder {
// Implementation note: This class is a spring-friendly facade to PhoneticEngine. It allows read/write configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@
* Port of lang.php
*
* @since 1.6
* @version $Id$
*/
public class Lang {
// Implementation note: This class is divided into two sections. The first part is a static factory interface that
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
* This class is immutable and thread-safe.
*
* @since 1.6
* @version $Id$
*/
public class Languages {
// Implementation note: This class is divided into two sections. The first part
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
* specifically tuned to family names, and may not work well at all for general text.
*
* @since 1.6
* @version $Id$
*/
public enum NameType {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
* Ported from phoneticengine.php
*
* @since 1.6
* @version $Id$
*/
public class PhoneticEngine {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
* <p>This class is immutable and thread-safe.</p>
*
* @since 1.6
* @version $Id$
*/
class ResourceConstants {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@
* </ul>
*
* @since 1.6
* @version $Id$
*/
public class Rule {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
* Types of rule.
*
* @since 1.6
* @version $Id$
*/
public enum RuleType {

Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/net/BCodec.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
* Header Extensions for Non-ASCII Text</a>
*
* @since 1.3
* @version $Id$
*/
public class BCodec extends RFC1522Codec implements StringEncoder, StringDecoder {
/**
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/net/QCodec.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
* Header Extensions for Non-ASCII Text</a>
*
* @since 1.3
* @version $Id$
*/
public class QCodec extends RFC1522Codec implements StringEncoder, StringDecoder {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@
* Mechanisms for Specifying and Describing the Format of Internet Message Bodies </a>
*
* @since 1.3
* @version $Id$
*/
public class QuotedPrintableCodec implements BinaryEncoder, BinaryDecoder, StringEncoder, StringDecoder {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
* Message Header Extensions for Non-ASCII Text</a>
*
* @since 1.3
* @version $Id$
*/
abstract class RFC1522Codec {

Expand Down
Loading

0 comments on commit d28720e

Please sign in to comment.