Corrected javadoc

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@16 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Andy Clement 2008-08-12 18:26:54 +00:00
parent 660224c19d
commit 5e0318d2eb
2 changed files with 2 additions and 4 deletions

View File

@ -16,8 +16,8 @@
package org.springframework.expression.spel;
import org.springframework.expression.EvaluationContext;
import org.springframework.expression.Expression;
import org.springframework.expression.EvaluationException;
import org.springframework.expression.Expression;
import org.springframework.expression.spel.ast.SpelNode;
import org.springframework.expression.spel.standard.StandardEvaluationContext;
@ -114,7 +114,6 @@ public class SpelExpression implements Expression {
*
* @param context the context in which to evaluate the expression
* @param value the new value
* @return the previous value
* @throws SpelException if there is a problem with evaluation of the expression.
*/
public void setValue(EvaluationContext context, Object value) throws EvaluationException {

View File

@ -18,7 +18,6 @@ package org.springframework.expression.spel;
import org.antlr.runtime.ANTLRStringStream;
import org.antlr.runtime.CommonTokenStream;
import org.antlr.runtime.RecognitionException;
import org.springframework.expression.EvaluationException;
import org.springframework.expression.Expression;
import org.springframework.expression.ParseException;
import org.springframework.expression.ParserContext;
@ -60,7 +59,7 @@ public class SpelExpressionParser extends TemplateAwareExpressionParser {
* @param expressionString the expression to parse
* @param context the parser context in which to perform the parse
* @return a parsed expression object
* @throws EvaluationException if the expression is invalid
* @throws ParseException if the expression is invalid
*/
protected Expression doParseExpression(String expressionString, ParserContext context)
throws ParseException {