restore deprecated annotation of StringUtils#getJaroWinklerDistance

This annotation was with "LANG-1316: Deprecate classes/methods moved to commons-text" and removed by mistake while reverting "LANG-1269: Wrong name or result of StringUtils#getJaroWinklerDistance".
This commit is contained in:
pascalschumacher 2017-03-19 14:37:19 +01:00
parent f4ee399e31
commit 811dbe7226

View File

@ -8213,6 +8213,7 @@ else if (Math.abs(n - m) > threshold) {
* <a href="https://commons.apache.org/proper/commons-text/javadocs/api-release/org/apache/commons/text/similarity/JaroWinklerDistance.html">
* JaroWinklerDistance</a> instead
*/
@Deprecated
public static double getJaroWinklerDistance(final CharSequence first, final CharSequence second) {
final double DEFAULT_SCALING_FACTOR = 0.1;