Skip to content

Commit efed057

Browse files
committed
Minor Javadoc'ing.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/codec/trunk@130227 13f79535-47bb-0310-9956-ffa450edef68
1 parent a337284 commit efed057

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/java/org/apache/commons/codec/binary/Base64.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,18 +64,18 @@
6464

6565
/**
6666
* Provides encode/decode for RFC 2045 Base64 as
67-
* defined by RFC 2045, by Freed and Borenstein. <a
68-
* href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>:
69-
* Multipurpose Internet Mail Extensions (MIME) Part One: Format of
70-
* Internet Message Bodies. Reference 1996.
67+
* defined by RFC 2045, by Freed and Borenstein.
7168
*
69+
* @see <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>, by Freed and Borenstein:
70+
* Multipurpose Internet Mail Extensions (MIME) Part One:
71+
* Format of Internet Message Bodies. Reference 1996.
7272
* @author Jeffrey Rodriguez
7373
* @author <a href="mailto:dlr@apache.org">Daniel Rall</a>
7474
* @author <a href="mailto:m.redington@ucl.ac.uk">Martin Redington</a>
7575
* @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
7676
* @author Tim O'Brien
7777
* @since 1.0-dev
78-
* @version $Id: Base64.java,v 1.11 2003/10/12 19:48:15 tobrien Exp $
78+
* @version $Id: Base64.java,v 1.12 2003/11/03 22:16:54 ggregory Exp $
7979
*/
8080
public class Base64 implements BinaryEncoder, BinaryDecoder {
8181

@@ -263,7 +263,7 @@ public Object decode(Object pObject) throws DecoderException {
263263
* @throws DecoderException if there is an Decoder specific exception
264264
* during the decoding process
265265
*/
266-
public byte[] decode(byte[] pArray) throws DecoderException {
266+
public byte[] decode(byte[] pArray) {
267267
byte[] result;
268268
result = decodeBase64(pArray);
269269
return (result);
@@ -574,7 +574,7 @@ public Object encode(Object pObject) throws EncoderException {
574574
* @throws EncoderException if there is an Encoder specific exception
575575
* during the encoding process
576576
*/
577-
public byte[] encode(byte[] pArray) throws EncoderException {
577+
public byte[] encode(byte[] pArray) {
578578
return (encodeBase64(pArray, false));
579579
}
580580

0 commit comments

Comments
 (0)