Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 021e8ff2 authored by Neil Fuller's avatar Neil Fuller Committed by Gerrit Code Review
Browse files

Merge "Track BufferIterator changes in libcore"

parents 7552e2de 5ba69e46
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -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;