Skip to content

Commit b9ac851

Browse files
committed
Javadoc
1 parent fdb4fba commit b9ac851

File tree

7 files changed

+201
-270
lines changed

7 files changed

+201
-270
lines changed

src/main/java/org/apache/commons/codec/binary/Base16InputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import org.apache.commons.codec.CodecPolicy;
2323

2424
/**
25-
* Provides Base16 encoding and decoding in a streaming fashion (unlimited size).
25+
* Provides Base16 decoding in a streaming fashion (unlimited size).
2626
* <p>
2727
* The default behavior of the Base16InputStream is to DECODE, whereas the default behavior of the
2828
* {@link Base16OutputStream} is to ENCODE, but this behavior can be overridden by using a different constructor.

src/main/java/org/apache/commons/codec/binary/Base16OutputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import org.apache.commons.codec.CodecPolicy;
2323

2424
/**
25-
* Provides Hex encoding and decoding in a streaming fashion (unlimited size).
25+
* Provides Hex encoding in a streaming fashion (unlimited size).
2626
* <p>
2727
* The default behavior of the HexOutputStream is to ENCODE, whereas the default behavior of the
2828
* {@link Base16InputStream} is to DECODE. But this behavior can be overridden by using a different constructor.

src/main/java/org/apache/commons/codec/binary/Base32InputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import org.apache.commons.codec.CodecPolicy;
2323

2424
/**
25-
* Provides Base32 encoding and decoding in a streaming fashion (unlimited size). When encoding the default lineLength
25+
* Provides Base32 decoding in a streaming fashion (unlimited size). When encoding the default lineLength
2626
* is 76 characters and the default lineEnding is CRLF, but these can be overridden by using the appropriate
2727
* constructor.
2828
* <p>

src/main/java/org/apache/commons/codec/binary/Base32OutputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import org.apache.commons.codec.CodecPolicy;
2323

2424
/**
25-
* Provides Base32 encoding and decoding in a streaming fashion (unlimited size). When encoding the default lineLength
25+
* Provides Base32 encoding in a streaming fashion (unlimited size). When encoding the default lineLength
2626
* is 76 characters and the default lineEnding is CRLF, but these can be overridden by using the appropriate
2727
* constructor.
2828
* <p>

src/main/java/org/apache/commons/codec/binary/Base64InputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import org.apache.commons.codec.CodecPolicy;
2323

2424
/**
25-
* Provides Base64 encoding and decoding in a streaming fashion (unlimited size). When encoding the default lineLength
25+
* Provides Base64 decoding in a streaming fashion (unlimited size). When encoding the default lineLength
2626
* is 76 characters and the default lineEnding is CRLF, but these can be overridden by using the appropriate
2727
* constructor.
2828
* <p>

src/main/java/org/apache/commons/codec/binary/Base64OutputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import org.apache.commons.codec.CodecPolicy;
2323

2424
/**
25-
* Provides Base64 encoding and decoding in a streaming fashion (unlimited size). When encoding the default lineLength
25+
* Provides Base64 encoding in a streaming fashion (unlimited size). When encoding the default lineLength
2626
* is 76 characters and the default lineEnding is CRLF, but these can be overridden by using the appropriate
2727
* constructor.
2828
* <p>

0 commit comments

Comments
 (0)