summaryrefslogtreecommitdiffstats
path: root/dex
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2012-01-30 11:41:13 -0800
committerBrian Carlstrom <bdc@google.com>2013-04-30 14:52:21 -0700
commit04b2ff92ae27b3acd82148d9252253573638ccc6 (patch)
tree85f2f3ae36769f84ff205f407d377458ce774357 /dex
parent0b42772c20d87d468bb095205c5461dacbbe9cea (diff)
downloadlibcore-04b2ff92ae27b3acd82148d9252253573638ccc6.zip
libcore-04b2ff92ae27b3acd82148d9252253573638ccc6.tar.gz
libcore-04b2ff92ae27b3acd82148d9252253573638ccc6.tar.bz2
Add missing @Override annotations
Change-Id: I4c5772c9549375beeb0e4f269bd61d623fca7e35 (cherry picked from commit 49992f5003aac55e1b1cf54769abc93630ccde93)
Diffstat (limited to 'dex')
-rw-r--r--dex/src/main/java/com/android/dex/TypeList.java2
1 files changed, 1 insertions, 1 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]);