You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by wo...@apache.org on 2013/11/01 22:27:46 UTC

svn commit: r1538067 - /commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/env/jexl/JexlEvaluator.java

Author: woonsan
Date: Fri Nov  1 21:27:46 2013
New Revision: 1538067

URL: http://svn.apache.org/r1538067
Log:
SCXML-114: correcting javadoc

Modified:
    commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/env/jexl/JexlEvaluator.java

Modified: commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/env/jexl/JexlEvaluator.java
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/env/jexl/JexlEvaluator.java?rev=1538067&r1=1538066&r2=1538067&view=diff
==============================================================================
--- commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/env/jexl/JexlEvaluator.java (original)
+++ commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/env/jexl/JexlEvaluator.java Fri Nov  1 21:27:46 2013
@@ -36,8 +36,7 @@ import org.w3c.dom.Node;
  * SCXML documents.
  * <P>
  * This implementation itself is thread-safe, so you can keep singleton
- * instance of this class for efficiency of the internal <code>JexlEngine</code>
- * instance.
+ * for efficiency of the internal <code>JexlEngine</code> member.
  * </P>
  */
 public class JexlEvaluator implements Evaluator, Serializable {
@@ -196,7 +195,7 @@ public class JexlEvaluator implements Ev
     }
 
     /**
-     * Returns the existing internal JexlEngine if existing.
+     * Returns the internal JexlEngine if existing.
      * Otherwise, it creates a new engine by invoking {@link #createJexlEngine()}.
      * <P>
      * <EM>NOTE: The internal JexlEngine instance can be null when this is deserialized.</EM>