From 04b2ff92ae27b3acd82148d9252253573638ccc6 Mon Sep 17 00:00:00 2001 From: Ian Rogers Date: Mon, 30 Jan 2012 11:41:13 -0800 Subject: Add missing @Override annotations Change-Id: I4c5772c9549375beeb0e4f269bd61d623fca7e35 (cherry picked from commit 49992f5003aac55e1b1cf54769abc93630ccde93) --- dex/src/main/java/com/android/dex/TypeList.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dex/src/main/java') 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 { 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]); -- cgit v1.1