This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-text.git
commit 8cf28a58b09cd8197093c7a3517fda3fae8258d9 Author: Gary Gregory <[email protected]> AuthorDate: Sat Sep 24 10:18:42 2022 -0400 Javadoc --- .../java/org/apache/commons/text/similarity/JaroWinklerDistance.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/text/similarity/JaroWinklerDistance.java b/src/main/java/org/apache/commons/text/similarity/JaroWinklerDistance.java index 892f456b..932a63f7 100644 --- a/src/main/java/org/apache/commons/text/similarity/JaroWinklerDistance.java +++ b/src/main/java/org/apache/commons/text/similarity/JaroWinklerDistance.java @@ -32,7 +32,6 @@ public class JaroWinklerDistance implements EditDistance<Double> { @Deprecated public static final int INDEX_NOT_FOUND = -1; - // TODO: remove this method in 2.0, see TEXT-104 /** * This method returns the Jaro-Winkler string matches, half transpositions, prefix array. * @@ -40,7 +39,7 @@ public class JaroWinklerDistance implements EditDistance<Double> { * @param second the second string to be matched * @return mtp array containing: matches, half transpositions, and prefix * @deprecated Deprecated as of 1.7. This method will be removed in 2.0, and moved to a Jaro Winkler similarity - * class. + * class. TODO see TEXT-104. */ @Deprecated protected static int[] matches(final CharSequence first, final CharSequence second) {
