v4: Unnecessary semi in {;}

[git-p4: depot-paths = "//depot/code/antlr4/main/": change = 9377]
This commit is contained in:
sharwell 2011-11-17 19:07:17 -08:00
parent b441dc226a
commit 73907aacd3
1 changed files with 2 additions and 2 deletions

View File

@ -128,6 +128,6 @@ public class TreeFilter<T> extends TreeParser {
// methods the downup strategy uses to do the up and down rules.
// to override, just define tree grammar rule topdown and turn on
// filter=true.
public void topdown() throws RecognitionException {;}
public void bottomup() throws RecognitionException {;}
public void topdown() throws RecognitionException {}
public void bottomup() throws RecognitionException {}
}