Skip to content

Commit 8c9a34e

Browse files
committed
Javadoc
Add an empty line before a Javadoc comment
1 parent 7bda233 commit 8c9a34e

14 files changed

Lines changed: 20 additions & 0 deletions

src/test/java/org/apache/commons/scxml2/EventDataTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
import org.apache.commons.scxml2.model.SCXML;
2424
import org.junit.jupiter.api.Assertions;
2525
import org.junit.jupiter.api.Test;
26+
2627
/**
2728
* Unit tests {@link org.apache.commons.scxml2.SCXMLExecutor}.
2829
* Testing special variable "_event.data"

src/test/java/org/apache/commons/scxml2/SCXMLExecutorTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import org.apache.commons.scxml2.model.TransitionTarget;
2626
import org.junit.jupiter.api.Assertions;
2727
import org.junit.jupiter.api.Test;
28+
2829
/**
2930
* Unit tests {@link org.apache.commons.scxml2.SCXMLExecutor}.
3031
*/

src/test/java/org/apache/commons/scxml2/TieBreakerTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
import org.apache.commons.scxml2.model.TransitionTarget;
2323
import org.junit.jupiter.api.Assertions;
2424
import org.junit.jupiter.api.Test;
25+
2526
/**
2627
* Unit tests for testing conflict resolution amongst multiple transitions
2728
* within the {@link org.apache.commons.scxml2.SCXMLExecutor}'s default

src/test/java/org/apache/commons/scxml2/WildcardTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
import org.apache.commons.scxml2.model.EnterableState;
2222
import org.junit.jupiter.api.Assertions;
2323
import org.junit.jupiter.api.Test;
24+
2425
/**
2526
* Unit tests {@link org.apache.commons.scxml2.SCXMLExecutor}.
2627
* Testing wildcard event matching (*)

src/test/java/org/apache/commons/scxml2/env/AbstractSCXMLListenerTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ public void tearDown() {
6565
@Test
6666
void testAbstractSCXMLListener0() {
6767
final SCXMLListener listener0 = new AbstractSCXMLListener() {
68+
6869
/**
6970
* @see SCXMLListener#onEntry(EnterableState)
7071
*/
@@ -105,6 +106,7 @@ public void onTransition(final TransitionTarget from, final TransitionTarget to,
105106
@Test
106107
void testAbstractSCXMLListener1() {
107108
final SCXMLListener listener1 = new AbstractSCXMLListener() {
109+
108110
/**
109111
* @see SCXMLListener#onEntry(EnterableState)
110112
*/
@@ -136,6 +138,7 @@ public void onExit(final EnterableState state) {
136138
@Test
137139
void testAbstractSCXMLListener2() {
138140
final SCXMLListener listener2 = new AbstractSCXMLListener() {
141+
139142
/**
140143
* @see SCXMLListener#onEntry(EnterableState)
141144
*/

src/test/java/org/apache/commons/scxml2/env/StopWatch.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,16 @@ public class StopWatch extends AbstractStateMachine {
4040

4141
/** The display decorations. */
4242
private static final String DELIM = ":", DOT = ".", EMPTY = "", ZERO = "0";
43+
4344
/** The fragments of the elapsed time. */
4445
private int hr, min, sec, fract;
46+
4547
/** The fragments of the display time. */
4648
private int dhr, dmin, dsec, dfract;
49+
4750
/** The stopwatch "split" (display freeze). */
4851
private boolean split;
52+
4953
/** The Timer to keep time. */
5054
private Timer timer;
5155

src/test/java/org/apache/commons/scxml2/env/javascript/JSContextTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
* the Javascript expression evaluator.
2727
*/
2828
class JSContextTest {
29+
2930
/**
3031
* Tests implementation of JSContext 'child' constructor.
3132
*/

src/test/java/org/apache/commons/scxml2/io/StateSrcTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
import org.apache.commons.scxml2.model.ModelException;
2525
import org.junit.jupiter.api.Assertions;
2626
import org.junit.jupiter.api.Test;
27+
2728
/**
2829
* Test white box nature of <state> element "src" attribute.
2930
*/

src/test/java/org/apache/commons/scxml2/model/ActionsTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
import org.apache.commons.scxml2.SCXMLTestHelper;
2222
import org.junit.jupiter.api.Assertions;
2323
import org.junit.jupiter.api.Test;
24+
2425
/**
2526
* Unit tests {@link org.apache.commons.scxml2.model.Assign}.
2627
* Unit tests {@link org.apache.commons.scxml2.model.Cancel}.

src/test/java/org/apache/commons/scxml2/model/AssignTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
import org.apache.commons.scxml2.SCXMLTestHelper;
2323
import org.junit.jupiter.api.Assertions;
2424
import org.junit.jupiter.api.Test;
25+
2526
/**
2627
* Unit tests for &lt;assign&gt; element, particular the "src" attribute.
2728
*/

0 commit comments

Comments
 (0)