提交 c09d3971 编写于 作者: A Andy Clement

Corrected javadoc

上级 9ad38638
......@@ -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 {
......
......@@ -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 {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册