Skip to content

Commit 1ade8d5

Browse files
committed
Remove @author tags.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1308315 13f79535-47bb-0310-9956-ffa450edef68
1 parent 5cd45cc commit 1ade8d5

42 files changed

Lines changed: 0 additions & 44 deletions

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-
* @author Apache Software Foundation
2423
* @version $Id$
2524
*/
2625
public interface BinaryDecoder extends Decoder {

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-
* @author Apache Software Foundation
2423
* @version $Id$
2524
*/
2625
public interface BinaryEncoder extends Encoder {

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
* foreseen that [codec] would be made to depend on [lang].
4949
*
5050
* @see <a href="http://download.oracle.com/javase/6/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
51-
* @author Apache Software Foundation
5251
* @since 1.4
5352
* @version $Id$
5453
*/

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
* not foreseen that Commons Codec would be made to depend on Commons Lang.
5151
*
5252
* @see <a href="http://docs.oracle.com/javase/6/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
53-
* @author Apache Software Foundation
5453
* @since 1.7
5554
* @version $Id: CharEncoding.java 1173287 2011-09-20 18:16:19Z ggregory $
5655
*/

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
*
2828
* <p>One of the two interfaces at the center of the codec package.</p>
2929
*
30-
* @author Apache Software Foundation
3130
* @version $Id$
3231
*/
3332
public interface Decoder {

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-
* @author Apache Software Foundation
2524
* @version $Id$
2625
*/
2726
public class DecoderException extends Exception {

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
* Encoder provides this common generic interface which allows a user to pass a
2424
* generic Object to any Encoder implementation in the codec package.</p>
2525
*
26-
* @author Apache Software Foundation
2726
* @version $Id$
2827
*/
2928
public interface Encoder {

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-
* @author Apache Software Foundation
2625
* @version $Id$
2726
*/
2827
public class EncoderException extends Exception {

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-
* @author Apache Software Foundation
2423
* @version $Id$
2524
*/
2625
public interface StringDecoder extends Decoder {

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-
* @author Apache Software Foundation
2423
* @version $Id$
2524
*/
2625
public interface StringEncoder extends Encoder {

0 commit comments

Comments
 (0)