Skip to content

Commit 7ac818b

Browse files
committed
Javadoc
1 parent 7229f7a commit 7ac818b

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/main/java/org/apache/commons/scxml2/env/groovy/GroovyEvaluator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535

3636
/**
3737
* Evaluator implementation enabling use of Groovy expressions in SCXML documents.
38-
* <P>
38+
* <p>
3939
* This implementation itself is thread-safe, so you can keep singleton for efficiency.
40-
* </P>
40+
* </p>
4141
*/
4242
public class GroovyEvaluator extends AbstractBaseEvaluator {
4343

src/main/java/org/apache/commons/scxml2/env/jexl/JexlEvaluator.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@
3535
/**
3636
* Evaluator implementation enabling use of JEXL expressions in
3737
* SCXML documents.
38-
* <P>
38+
* <p>
3939
* This implementation itself is thread-safe, so you can keep singleton
4040
* for efficiency of the internal {@code JexlEngine} member.
41-
* </P>
41+
* </p>
4242
*/
4343
public class JexlEvaluator extends AbstractBaseEvaluator {
4444

@@ -181,9 +181,9 @@ protected JexlContext getEffectiveContext(final JexlContext nodeCtx) {
181181
/**
182182
* Returns the internal JexlEngine if existing.
183183
* Otherwise, it creates a new engine by invoking {@link #createJexlEngine()}.
184-
* <P>
185-
* <EM>NOTE: The internal JexlEngine instance can be null when this is deserialized.</EM>
186-
* </P>
184+
* <p>
185+
* <em>NOTE: The internal JexlEngine instance can be null when this is deserialized.</em>
186+
* </p>
187187
* @return the current JexlEngine
188188
*/
189189
private JexlEngine getJexlEngine() {

0 commit comments

Comments
 (0)