fixing TODOs

This commit is contained in:
Andy Clement 2008-08-16 01:57:13 +00:00
parent 2e7b0e3767
commit b26c6df1a1
2 changed files with 3 additions and 5 deletions

View File

@ -15,7 +15,6 @@
*/ */
package org.springframework.expression; package org.springframework.expression;
// TODO (asc) This class needs a better name? I might have used EvaluationException if it wasn't also used for parsing issues
/** /**
* Base class for exceptions occurring during expression parsing and evaluation. * Base class for exceptions occurring during expression parsing and evaluation.
* *

View File

@ -1,6 +1,5 @@
package org.springframework.expression; package org.springframework.expression;
/** /**
* By default the mathematical operators {@link Operation} support simple types like numbers. By providing an * By default the mathematical operators {@link Operation} support simple types like numbers. By providing an
* implementation of OperatorOverloader, a user of the expression language can support these operations on other types. * implementation of OperatorOverloader, a user of the expression language can support these operations on other types.
@ -9,8 +8,8 @@ package org.springframework.expression;
*/ */
public interface OperatorOverloader { public interface OperatorOverloader {
// TODO (asc) does this need a better type name? // TODO does type OperatorOverloader need a better name?
// TODO (asc) needs some testing! // TODO Operator overloading needs some testing!
/** /**
* Return true if the operator overloader supports the specified operation between the two operands and so should be * Return true if the operator overloader supports the specified operation between the two operands and so should be