diff options
-rw-r--r-- | dex/src/main/java/com/android/dex/TypeList.java | 2 | ||||
-rw-r--r-- | luni/src/main/java/java/nio/ByteBuffer.java | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/dex/src/main/java/com/android/dex/TypeList.java b/dex/src/main/java/com/android/dex/TypeList.java index aa1bf58..6e321fb 100644 --- a/dex/src/main/java/com/android/dex/TypeList.java +++ b/dex/src/main/java/com/android/dex/TypeList.java @@ -34,7 +34,7 @@ public final class TypeList implements Comparable<TypeList> { return types; } - public int compareTo(TypeList other) { + @Override public int compareTo(TypeList other) { for (int i = 0; i < types.length && i < other.types.length; i++) { if (types[i] != other.types[i]) { return Unsigned.compare(types[i], other.types[i]); diff --git a/luni/src/main/java/java/nio/ByteBuffer.java b/luni/src/main/java/java/nio/ByteBuffer.java index cd39a53..324369a 100644 --- a/luni/src/main/java/java/nio/ByteBuffer.java +++ b/luni/src/main/java/java/nio/ByteBuffer.java @@ -125,7 +125,7 @@ public abstract class ByteBuffer extends Buffer implements Comparable<ByteBuffer * @exception UnsupportedOperationException * if this buffer is not based on an array. */ - public final byte[] array() { + @Override public final byte[] array() { return protectedArray(); } @@ -142,7 +142,7 @@ public abstract class ByteBuffer extends Buffer implements Comparable<ByteBuffer * @exception UnsupportedOperationException * if this buffer is not based on an array. */ - public final int arrayOffset() { + @Override public final int arrayOffset() { return protectedArrayOffset(); } @@ -290,7 +290,7 @@ public abstract class ByteBuffer extends Buffer implements Comparable<ByteBuffer * @exception ClassCastException * if {@code other} is not a byte buffer. */ - public int compareTo(ByteBuffer otherBuffer) { + @Override public int compareTo(ByteBuffer otherBuffer) { int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining() : otherBuffer.remaining(); int thisPos = position; @@ -592,7 +592,7 @@ public abstract class ByteBuffer extends Buffer implements Comparable<ByteBuffer */ public abstract short getShort(int index); - public final boolean hasArray() { + @Override public final boolean hasArray() { return protectedHasArray(); } @@ -617,7 +617,7 @@ public abstract class ByteBuffer extends Buffer implements Comparable<ByteBuffer * * @return {@code true} if this buffer is direct, {@code false} otherwise. */ - public abstract boolean isDirect(); + @Override public abstract boolean isDirect(); /** * Returns the byte order used by this buffer when converting bytes from/to |