Fix build

This commit is contained in:
TheMode 2021-05-15 10:12:04 +02:00
parent 88dba380f9
commit bcf184123d

View File

@ -25,8 +25,8 @@ public class StringUtils {
* Applies the Jaro-Winkler distance algorithm to the given strings, providing information about the
* similarity of them.
*
* @param s1 The first string that gets compared. May be <code>null</node> or empty.
* @param s2 The second string that gets compared. May be <code>null</node> or empty.
* @param s1 The first string that gets compared. May be null or empty.
* @param s2 The second string that gets compared. May be null or empty.
* @return The Jaro-Winkler score (between 0.0 and 1.0), with a higher value indicating larger similarity.
* @author Thomas Trojer <thomas@trojer.net>
*/