Skip to content

Commit 535f5d4

Browse files
committed
Rename interface as JFlexStackingLexer
1 parent d99e6d8 commit 535f5d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/org/opensolaris/opengrok/analysis/JFlexStackableLexer.java renamed to src/org/opensolaris/opengrok/analysis/JFlexStackingLexer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* Represents an API for an extension of {@link JFlexLexer} that needs to track
3232
* a state stack.
3333
*/
34-
public interface JFlexStackableLexer extends JFlexLexer {
34+
public interface JFlexStackingLexer extends JFlexLexer {
3535

3636
/**
3737
* Saves current {@link #yystate()} to stack, and enters the specified

src/org/opensolaris/opengrok/analysis/JFlexStateStacker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* a state stack.
3434
*/
3535
public abstract class JFlexStateStacker implements Resettable,
36-
JFlexStackableLexer {
36+
JFlexStackingLexer {
3737

3838
protected final Stack<Integer> stack = new Stack<>();
3939

0 commit comments

Comments
 (0)