You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dj...@apache.org on 2010/01/22 00:33:57 UTC

svn commit: r901923 - /geronimo/specs/trunk/geronimo-jsp_2.2_spec/src/main/java/javax/servlet/jsp/el/ExpressionEvaluator.java

Author: djencks
Date: Thu Jan 21 23:33:56 2010
New Revision: 901923

URL: http://svn.apache.org/viewvc?rev=901923&view=rev
Log:
signature fixes

Modified:
    geronimo/specs/trunk/geronimo-jsp_2.2_spec/src/main/java/javax/servlet/jsp/el/ExpressionEvaluator.java

Modified: geronimo/specs/trunk/geronimo-jsp_2.2_spec/src/main/java/javax/servlet/jsp/el/ExpressionEvaluator.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jsp_2.2_spec/src/main/java/javax/servlet/jsp/el/ExpressionEvaluator.java?rev=901923&r1=901922&r2=901923&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jsp_2.2_spec/src/main/java/javax/servlet/jsp/el/ExpressionEvaluator.java (original)
+++ geronimo/specs/trunk/geronimo-jsp_2.2_spec/src/main/java/javax/servlet/jsp/el/ExpressionEvaluator.java Thu Jan 21 23:33:56 2010
@@ -77,7 +77,7 @@
      * @exception ELException Thrown if parsing errors were found.
      */ 
     public abstract Expression parseExpression( String expression, 
-                                Class<?> expectedType, 
+                                Class expectedType, 
                                 FunctionMapper fMapper ) 
       throws ELException; 
 
@@ -100,7 +100,7 @@
      * @exception ELException Thrown if the expression evaluation failed.
      */ 
     public abstract Object evaluate( String expression, 
-                                Class<?> expectedType, 
+                                Class expectedType, 
                                 VariableResolver vResolver,
                                 FunctionMapper fMapper ) 
       throws ELException;