Merge "Track BufferIterator changes in libcore"
am: 021e8ff2af
Change-Id: Id6cb26d1af8a3e35af52ae0f070fdab8a38c8e69
This commit is contained in:
@@ -39,6 +39,11 @@ public class BridgeBufferIterator extends BufferIterator {
|
||||
mByteBuffer.position(offset);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int pos() {
|
||||
return mByteBuffer.position();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void skip(int byteCount) {
|
||||
int newPosition = mByteBuffer.position() + byteCount;
|
||||
|
||||
Reference in New Issue
Block a user