Skip to content

Commit bac647e

Browse files
committed
No need for blank Javadoc lines between Javadoc @ tags
1 parent 3142063 commit bac647e

File tree

9 files changed

+0
-124
lines changed

9 files changed

+0
-124
lines changed

src/main/java/org/apache/commons/scxml2/env/AbstractStateMachine.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ public AbstractStateMachine(final SCXML stateMachine) throws ModelException {
157157
* @throws ModelException in case there is a fatal SCXML object model problem
158158
* @see Context
159159
* @see Evaluator
160-
*
161160
* @since 0.7
162161
*/
163162
public AbstractStateMachine(final SCXML stateMachine,
@@ -188,7 +187,6 @@ public AbstractStateMachine(final URL scxmlDocument) throws ModelException {
188187
* @param rootCtx The root context for this instance.
189188
* @param evaluator The expression evaluator for this instance.
190189
* @throws ModelException in case there is a fatal SCXML object model problem
191-
*
192190
* @see Context
193191
* @see Evaluator
194192
*/

src/main/java/org/apache/commons/scxml2/env/javascript/JSBindings.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ public class JSBindings implements Bindings {
3636
* Initialize the Bindings
3737
*
3838
* @param jsContext initial SCXML Context to use for script variables.
39-
*
4039
* @throws IllegalArgumentException Thrown if <code>jsContext</code> is {@code null}.
4140
*/
4241
public JSBindings(final JSContext jsContext) {

src/main/java/org/apache/commons/scxml2/env/javascript/JSEvaluator.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,7 @@ public Object eval(final Context context, final String expression) throws SCXMLE
148148
*
149149
* @param context SCXML context.
150150
* @param expression Expression to evaluate.
151-
*
152151
* @return Boolean casted result.
153-
*
154152
* @throws SCXMLExpressionException Thrown if the expression was invalid.
155153
*/
156154
@Override
@@ -163,9 +161,7 @@ public Boolean evalCond(final Context context, final String expression) throws S
163161
*
164162
* @param ctx SCXML context.
165163
* @param script Script to execute.
166-
*
167164
* @return Result of script execution or {@code null}.
168-
*
169165
* @throws SCXMLExpressionException Thrown if the script was invalid.
170166
*/
171167
@Override

src/main/java/org/apache/commons/scxml2/io/SCXMLReader.java

Lines changed: 0 additions & 67 deletions
Large diffs are not rendered by default.

src/main/java/org/apache/commons/scxml2/io/SCXMLWriter.java

Lines changed: 0 additions & 38 deletions
Large diffs are not rendered by default.

src/main/java/org/apache/commons/scxml2/model/Action.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ public Action() {
4343
* Execute this action instance.
4444
*
4545
* @param exctx The ActionExecutionContext for this execution instance
46-
*
4746
* @throws ModelException If the execution causes the model to enter
4847
* a non-deterministic state.
4948
* @throws SCXMLExpressionException If the execution involves trying
@@ -68,7 +67,6 @@ public Executable getParent() {
6867
*
6968
* @return The parent {@link EnterableState}
7069
* @throws ModelException For an unknown EnterableState subclass
71-
*
7270
* @since 0.9
7371
*/
7472
public EnterableState getParentEnterableState()

src/main/java/org/apache/commons/scxml2/model/SCXML.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ public SCXML() {
138138
* Add an immediate child of the SCXML root.
139139
*
140140
* @param es The child to be added.
141-
*
142141
* @since 0.7
143142
*/
144143
public final void addChild(final EnterableState es) {
@@ -166,7 +165,6 @@ public final String generateTransitionTargetId() {
166165
* Gets the immediate child targets of the SCXML root.
167166
*
168167
* @return List Returns list of the child targets.
169-
*
170168
* @since 0.7
171169
*/
172170
public final List<EnterableState> getChildren() {
@@ -203,7 +201,6 @@ public String getExmode() {
203201
* Gets the first immediate child of the SCXML root. Return null if there's no child.
204202
*
205203
* @return Returns the first immediate child of the SCXML root. Return null if there's no child.
206-
*
207204
* @since 2.0
208205
*/
209206
public final EnterableState getFirstChild() {
@@ -231,7 +228,6 @@ public final String getInitial() {
231228
* Gets the initial Transition.
232229
*
233230
* @return Returns the initial transition for this state machine.
234-
*
235231
* @since 2.0
236232
*/
237233
public final SimpleTransition getInitialTransition() {
@@ -352,7 +348,6 @@ public final void setInitial(final String initial) {
352348
* <p>Note: the initial transition can/may not have executable content!</p>
353349
*
354350
* @param initialTransition The initial transition to set.
355-
*
356351
* @since 2.0
357352
*/
358353
public final void setInitialTransition(final SimpleTransition initialTransition) {

src/main/java/org/apache/commons/scxml2/model/TransitionalState.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ public TransitionalState() {
6565
* Add a child.
6666
*
6767
* @param es A child enterable state.
68-
*
6968
* @since 0.7
7069
*/
7170
protected void addChild(final EnterableState es) {
@@ -75,7 +74,6 @@ protected void addChild(final EnterableState es) {
7574

7675
/**
7776
* @param h History pseudo state
78-
*
7977
* @since 0.7
8078
*/
8179
public final void addHistory(final History h) {
@@ -120,7 +118,6 @@ public TransitionalState getAncestor(final int level) {
120118
* Gets the set of child transition targets (may be empty).
121119
*
122120
* @return Returns the children.
123-
*
124121
* @since 0.7
125122
*/
126123
public final List<EnterableState> getChildren() {
@@ -142,7 +139,6 @@ public final Datamodel getDatamodel() {
142139
* @return a list of all history pseudo states contained by a given state
143140
* (can be empty)
144141
* @see #hasHistory()
145-
*
146142
* @since 0.7
147143
*/
148144
public final List<History> getHistory() {

src/main/java/org/apache/commons/scxml2/semantics/SCXMLSemanticsImpl.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -880,7 +880,6 @@ public void notifyOnTransition(final SCXMLExecutionContext exctx, final Transiti
880880
*
881881
* @param exctx provides the execution context
882882
* @param event The events to be forwarded
883-
*
884883
* @throws ModelException in case there is a fatal SCXML object model problem.
885884
*/
886885
public void processInvokes(final SCXMLExecutionContext exctx, final TriggerEvent event) throws ModelException {

0 commit comments

Comments
 (0)