Skip to content

Commit c83c37e

Browse files
committed
1 parent 6f37bc8 commit c83c37e

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/main/java/org/apache/commons/io/input/UnsynchronizedByteArrayInputStream.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,13 @@ public boolean markSupported() {
171171
return true;
172172
}
173173

174+
@SuppressWarnings("sync-override")
174175
@Override
175176
public void mark(final int readlimit) {
176177
this.markedOffset = this.offset;
177178
}
178179

180+
@SuppressWarnings("sync-override")
179181
@Override
180182
public void reset() {
181183
this.offset = this.markedOffset;

0 commit comments

Comments
 (0)