fixing TODOs

This commit is contained in:
Andy Clement 2008-08-16 01:56:58 +00:00
parent 3d54bd5aa3
commit 2e7b0e3767
1 changed files with 2 additions and 3 deletions

View File

@ -17,15 +17,14 @@ package org.springframework.expression.spel.ast;
import org.antlr.runtime.Token;
import org.springframework.expression.EvaluationException;
import org.springframework.expression.spel.SpelException;
import org.springframework.expression.spel.ExpressionState;
import org.springframework.expression.spel.SpelException;
// TODO is the operator 'distanceto' any use...?
/**
* The distanceto operator uses an implementation of the levenshtein distance measurement for determining the 'edit
* distance' between two strings (the two operands to distanceto). http://en.wikipedia.org/wiki/Levenshtein_distance
* @author Andy Clement
*
* @author Andy Clement
*/
public class OperatorDistanceTo extends Operator {