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

Commit 4dad9121 authored by Tobias Thierer's avatar Tobias Thierer
Browse files

Track change of some java.nio.Buffer methods to nonfinal.

Another CL in this topic turns the methods into nonfinal
ones in oder to be able to add covariant method overloads
in java.nio.{Byte,Char,Double,Float,Int,Long,ShortBuffer.

Bug: 71597787
Test: Treehugger
Change-Id: Ife6d5938c932f4e881f8f23c85422c84b6c6a41a
parent 4d3a2f95
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -59855,20 +59855,20 @@ package java.nio {
    method public abstract Object array();
    method public abstract int arrayOffset();
    method public final int capacity();
    method public final java.nio.Buffer clear();
    method public final java.nio.Buffer flip();
    method public java.nio.Buffer clear();
    method public java.nio.Buffer flip();
    method public abstract boolean hasArray();
    method public final boolean hasRemaining();
    method public abstract boolean isDirect();
    method public abstract boolean isReadOnly();
    method public final int limit();
    method public final java.nio.Buffer limit(int);
    method public final java.nio.Buffer mark();
    method public java.nio.Buffer limit(int);
    method public java.nio.Buffer mark();
    method public final int position();
    method public final java.nio.Buffer position(int);
    method public java.nio.Buffer position(int);
    method public final int remaining();
    method public final java.nio.Buffer reset();
    method public final java.nio.Buffer rewind();
    method public java.nio.Buffer reset();
    method public java.nio.Buffer rewind();
  }
  public class BufferOverflowException extends java.lang.RuntimeException {