dion        2004/08/23 06:53:34

  Modified:    jexl/src/java/org/apache/commons/jexl JexlContext.java
                        Expression.java JexlExprResolver.java
  Log:
  cleanup
  
  Revision  Changes    Path
  1.6       +3 -3      
jakarta-commons/jexl/src/java/org/apache/commons/jexl/JexlContext.java
  
  Index: JexlContext.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/jexl/src/java/org/apache/commons/jexl/JexlContext.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- JexlContext.java  19 Aug 2004 18:16:17 -0000      1.5
  +++ JexlContext.java  23 Aug 2004 13:53:34 -0000      1.6
  @@ -33,7 +33,7 @@
        * 
        * @param vars Contents of vars will be replaced with the content of this Map
        */
  -    public void setVars(Map vars);
  +    void setVars(Map vars);
       
       /**
        * Retrives the Map of variables associated with this JexlContext.  The
  @@ -42,5 +42,5 @@
        * 
        * @return A reference to the variable Map associated with this JexlContext.
        */
  -    public Map getVars();
  +    Map getVars();
   }
  
  
  
  1.7       +5 -5      
jakarta-commons/jexl/src/java/org/apache/commons/jexl/Expression.java
  
  Index: Expression.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/jexl/src/java/org/apache/commons/jexl/Expression.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Expression.java   13 Jun 2004 01:42:21 -0000      1.6
  +++ Expression.java   23 Aug 2004 13:53:34 -0000      1.7
  @@ -41,14 +41,14 @@
        * @param context A JexlContext containing variables.
        * @return The result of this evaluation
        */
  -    public Object evaluate(JexlContext context) throws Exception;
  +    Object evaluate(JexlContext context) throws Exception;
   
       /**
        * Returns the JEXL expression this Expression was created with.
        * 
        * @return The JEXL expression to be evaluated
        */
  -    public String getExpression();
  +    String getExpression();
   
       /**
        *  allows addition of a resolver to allow custom interdiction of
  @@ -56,7 +56,7 @@
        *
        *  @param resolver resolver to be called before Jexl expression evaluated
        */
  -    public void addPreResolver(JexlExprResolver resolver);
  +    void addPreResolver(JexlExprResolver resolver);
   
       /**
        *  allows addition of a resolver to allow custom interdiction of
  @@ -64,5 +64,5 @@
        *
        *  @param resolver resolver to be called if Jexl expression evaluated to null
        */
  -    public void addPostResolver(JexlExprResolver resolver);
  +    void addPostResolver(JexlExprResolver resolver);
   }
  
  
  
  1.3       +2 -2      
jakarta-commons/jexl/src/java/org/apache/commons/jexl/JexlExprResolver.java
  
  Index: JexlExprResolver.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/jexl/src/java/org/apache/commons/jexl/JexlExprResolver.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- JexlExprResolver.java     12 Jun 2004 23:53:17 -0000      1.2
  +++ JexlExprResolver.java     23 Aug 2004 13:53:34 -0000      1.3
  @@ -10,7 +10,7 @@
    */
   public interface JexlExprResolver
   {
  -    public static final Object NO_VALUE = new Object();
  +    Object NO_VALUE = new Object();
   
       /**
        *  evaluates an expression against the context
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to