Merge "Track BufferIterator changes in libcore" am: 021e8ff2af
am: 4ff3c27817
Change-Id: Ifc4c1ada0299b430a74d98d05b9331182adf0933
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