Skip to content

Commit d0ff33a

Browse files
committed
We don't (yet) support marking the Base64 stream
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@669993 13f79535-47bb-0310-9956-ffa450edef68
1 parent 5e2c0d1 commit d0ff33a

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,5 +144,11 @@ public int read(byte b[], int offset, int len) throws IOException {
144144
}
145145
}
146146

147-
147+
/**
148+
* {@inheritDoc}
149+
* @return false
150+
*/
151+
public boolean markSupported() {
152+
return false; // not an easy job to support marks
153+
}
148154
}

0 commit comments

Comments
 (0)