Skip to content

Commit fb78cbb

Browse files
committed
Replace magic number (-1) with EOF constant. Jaavdoc.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1301755 13f79535-47bb-0310-9956-ffa450edef68
1 parent 1e2151c commit fb78cbb

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@
3232
*/
3333
public abstract class BaseNCodec implements BinaryEncoder, BinaryDecoder {
3434

35+
/**
36+
* EOF
37+
*
38+
* @since 1.7
39+
*/
3540
static final int EOF = -1;
3641

3742
/**

0 commit comments

Comments
 (0)