Skip to content

Commit e38b781

Browse files
committed
Renamed Binary to BinaryCodec.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/codec/trunk@130343 13f79535-47bb-0310-9956-ffa450edef68
1 parent f57037a commit e38b781

4 files changed

Lines changed: 129 additions & 129 deletions

File tree

RELEASE-NOTES.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$Id: RELEASE-NOTES.txt,v 1.19 2004/03/24 18:39:25 ggregory Exp $
1+
$Id: RELEASE-NOTES.txt,v 1.20 2004/03/29 23:04:41 ggregory Exp $
22

33
Commons Codec Package
44
Version 1.3-dev
@@ -16,7 +16,7 @@ License 1.1.
1616

1717
NEW FEATURES:
1818

19-
* Binary: Encodes and decodes binary to and from ascii bit Strings.
19+
* BinaryCodec: Encodes and decodes binary to and from Strings of 0s and 1s.
2020

2121
* QuotedPrintableCodec: Codec for RFC 1521 MIME (Multipurpose Internet
2222
Mail Extensions) Part One. Rules #3, #4, and #5 of the quoted-printable spec

src/java/org/apache/commons/codec/binary/Binary.java renamed to src/java/org/apache/commons/codec/binary/BinaryCodec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @since 1.3
3333
* @version $Id $
3434
*/
35-
public class Binary implements BinaryDecoder, BinaryEncoder {
35+
public class BinaryCodec implements BinaryDecoder, BinaryEncoder {
3636
/*
3737
* tried to avoid using ArrayUtils to minimize dependencies while using these empty arrays - dep is just not worth
3838
* it.

0 commit comments

Comments
 (0)