Fix @Override issues when compiling with java 1.5

git-svn-id: https://smali.googlecode.com/svn/trunk@786 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com 2010-08-17 13:27:06 +00:00
parent a6e5671a62
commit 525ad75b9d
2 changed files with 0 additions and 4 deletions

View File

@ -414,7 +414,6 @@ public class RadixTreeImpl<T> implements RadixTree<T>, Formattable {
*
* WARNING! Do not use this for a large Trie, it's for testing purpose only.
*/
@Override
public void formatTo(Formatter formatter, int flags, int width, int precision) {
formatNodeTo(formatter, 0, root);
}

View File

@ -19,12 +19,9 @@ public abstract class VisitorImpl<T, R> implements Visitor<T, R> {
this.result = initialValue;
}
@Override
public R getResult() {
return result;
}
@Override
abstract public void visit(String key, RadixTreeNode<T> parent, RadixTreeNode<T> node);
}