Skip to content

Commit 17b3033

Browse files
committed
doc cleanup
1 parent ec75ca7 commit 17b3033

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ private void init() {
5555
*
5656
* Usage:
5757
*
58-
* <p>ReflectiveStateMachine sm = new ReflectiveStateMachine() {
58+
* <p>
59+
* ReflectiveStateMachine sm = new ReflectiveStateMachine() {
5960
*
6061
* protected void declareTransitions() {
6162
* addTransition(null, "blue");
@@ -64,11 +65,10 @@ private void init() {
6465
* }
6566
*
6667
* public void onEnteringBlue(String state) {
67-
* assertEquals("blue", state);
68-
* enteringBlue.incrementAndGet();
68+
* System.out.println("in state 'blue'");
6969
* }
70-
* }</p>
71-
*
70+
* }
71+
* </p>
7272
*/
7373
protected void declareTransitions() {
7474
// children can override to provide functionality
@@ -179,4 +179,4 @@ public void onTransition(String from, String to) {
179179
}
180180
};
181181
}
182-
}
182+
}

0 commit comments

Comments
 (0)