Skip to content

Commit 5cd45cc

Browse files
committed
Undo previous commit (svn merge -r 1308156:1308111 .)
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1308314 13f79535-47bb-0310-9956-ffa450edef68
1 parent 0a7bbe2 commit 5cd45cc

48 files changed

Lines changed: 299 additions & 279 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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
/**
2121
* Defines common decoding methods for byte array decoders.
2222
*
23+
* @author Apache Software Foundation
2324
* @version $Id$
2425
*/
2526
public interface BinaryDecoder extends Decoder {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
/**
2121
* Defines common encoding methods for byte array encoders.
2222
*
23+
* @author Apache Software Foundation
2324
* @version $Id$
2425
*/
2526
public interface BinaryEncoder extends Encoder {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
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
5152
* @since 1.4
5253
* @version $Id$
5354
*/

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
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
5354
* @since 1.7
5455
* @version $Id: CharEncoding.java 1173287 2011-09-20 18:16:19Z ggregory $
5556
*/

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

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

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
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
2425
* @version $Id$
2526
*/
2627
public class DecoderException extends Exception {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
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
2627
* @version $Id$
2728
*/
2829
public interface Encoder {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
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
2526
* @version $Id$
2627
*/
2728
public class EncoderException extends Exception {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
/**
2121
* Defines common decoding methods for String decoders.
2222
*
23+
* @author Apache Software Foundation
2324
* @version $Id$
2425
*/
2526
public interface StringDecoder extends Decoder {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
/**
2121
* Defines common encoding methods for String encoders.
2222
*
23+
* @author Apache Software Foundation
2324
* @version $Id$
2425
*/
2526
public interface StringEncoder extends Encoder {

0 commit comments

Comments
 (0)