Skip to content

Commit 4cae77f

Browse files
committed
cleanup
1 parent bc204d4 commit 4cae77f

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/java/unquietcode/tools/esm/ControllableStateMachine.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ this software and associated documentation files (the "Software"), to deal in
2727

2828
/**
2929
* Provides methods for controlling a state machine without providing direct access to the
30-
* underlying object. Essentially an immutable {@link EnumStateMachine} instance.
30+
* underlying object.
3131
*
3232
* @author Ben Fagin
3333
* @version 2013-04-02
@@ -86,4 +86,4 @@ public interface ControllableStateMachine<T> {
8686
* Resets the state machine to its initial state and clears the transition count.
8787
*/
8888
void reset();
89-
}
89+
}

src/main/java/unquietcode/tools/esm/SequenceHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ this software and associated documentation files (the "Software"), to deal in
3131
*/
3232
@Deprecated
3333
@FunctionalInterface
34-
public interface SequenceHandler<T> extends unquietcode.tools.esm.sequences.SequenceHandler<T> { }
34+
public interface SequenceHandler<T> extends unquietcode.tools.esm.sequences.SequenceHandler<T> { }

src/main/java/unquietcode/tools/esm/sequences/SequenceHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ public interface SequenceHandler<T> {
3838
* @param pattern the pattern which was matched
3939
*/
4040
void onMatch(List<T> pattern);
41-
}
41+
}

0 commit comments

Comments
 (0)