diff options
author | Ian Rogers <irogers@google.com> | 2012-01-30 11:41:13 -0800 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2013-04-30 14:52:21 -0700 |
commit | 04b2ff92ae27b3acd82148d9252253573638ccc6 (patch) | |
tree | 85f2f3ae36769f84ff205f407d377458ce774357 /dex | |
parent | 0b42772c20d87d468bb095205c5461dacbbe9cea (diff) | |
download | libcore-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.java | 2 |
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]); |