mirror of
https://github.com/revanced/smali.git
synced 2025-05-29 04:10:13 +02:00
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:
parent
a6e5671a62
commit
525ad75b9d
@ -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.
|
* 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) {
|
public void formatTo(Formatter formatter, int flags, int width, int precision) {
|
||||||
formatNodeTo(formatter, 0, root);
|
formatNodeTo(formatter, 0, root);
|
||||||
}
|
}
|
||||||
|
@ -19,12 +19,9 @@ public abstract class VisitorImpl<T, R> implements Visitor<T, R> {
|
|||||||
this.result = initialValue;
|
this.result = initialValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public R getResult() {
|
public R getResult() {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
abstract public void visit(String key, RadixTreeNode<T> parent, RadixTreeNode<T> node);
|
abstract public void visit(String key, RadixTreeNode<T> parent, RadixTreeNode<T> node);
|
||||||
|
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user