mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-22 14:09:25 +00:00
fixing TODOs
This commit is contained in:
-1
@@ -15,7 +15,6 @@
|
||||
*/
|
||||
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.
|
||||
*
|
||||
|
||||
+3
-4
@@ -1,6 +1,5 @@
|
||||
package org.springframework.expression;
|
||||
|
||||
|
||||
/**
|
||||
* 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.
|
||||
@@ -9,9 +8,9 @@ package org.springframework.expression;
|
||||
*/
|
||||
public interface OperatorOverloader {
|
||||
|
||||
// TODO (asc) does this need a better type name?
|
||||
// TODO (asc) needs some testing!
|
||||
|
||||
// TODO does type OperatorOverloader need a better name?
|
||||
// TODO Operator overloading needs some testing!
|
||||
|
||||
/**
|
||||
* Return true if the operator overloader supports the specified operation between the two operands and so should be
|
||||
* invoked to handle it.
|
||||
|
||||
Reference in New Issue
Block a user