Skip to content

Commit 07b5e30

Browse files
committed
Javadoc
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1064423 13f79535-47bb-0310-9956-ffa450edef68
1 parent 0309db6 commit 07b5e30

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@
2222
import java.io.IOException;
2323
import java.io.InputStream;
2424

25+
/**
26+
* Common base class for Base-N input streams.
27+
*
28+
* @since 1.5
29+
*/
2530
public class BaseNCodecInputStream extends FilterInputStream {
2631

2732
private final boolean doEncode;

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@
2222
import java.io.IOException;
2323
import java.io.OutputStream;
2424

25+
/**
26+
* Common base class for Base-N output streams.
27+
*
28+
* @since 1.5
29+
*/
2530
public class BaseNCodecOutputStream extends FilterOutputStream {
2631

2732
private final boolean doEncode;

0 commit comments

Comments
 (0)