Author: sebb
Date: Thu Dec  1 10:15:00 2011
New Revision: 1209021

URL: http://svn.apache.org/viewvc?rev=1209021&view=rev
Log:
No need for strict to be protected

Modified:
    
commons/proper/jexl/branches/2.0-API-COMPAT/src/main/java/org/apache/commons/jexl2/JexlArithmetic.java

Modified: 
commons/proper/jexl/branches/2.0-API-COMPAT/src/main/java/org/apache/commons/jexl2/JexlArithmetic.java
URL: 
http://svn.apache.org/viewvc/commons/proper/jexl/branches/2.0-API-COMPAT/src/main/java/org/apache/commons/jexl2/JexlArithmetic.java?rev=1209021&r1=1209020&r2=1209021&view=diff
==============================================================================
--- 
commons/proper/jexl/branches/2.0-API-COMPAT/src/main/java/org/apache/commons/jexl2/JexlArithmetic.java
 (original)
+++ 
commons/proper/jexl/branches/2.0-API-COMPAT/src/main/java/org/apache/commons/jexl2/JexlArithmetic.java
 Thu Dec  1 10:15:00 2011
@@ -55,10 +55,8 @@ public class JexlArithmetic {
     /** Default BigDecimal scale. */
     protected static final int BIGD_SCALE = -1;
     /** Whether this JexlArithmetic instance behaves in strict or lenient 
mode. 
-     * @deprecated - do not access directly, may be made private later 
      */
-    @Deprecated
-    protected volatile boolean strict;
+    private volatile boolean strict;
     /** The big decimal math context. */
     protected final MathContext mathContext;
     /** The big decimal scale. */


Reply via email to