Refactor Normalization

This commit is contained in:
Reinhard Pointner 2016-11-09 22:32:27 +08:00
parent af62b1271b
commit 715f12601a

View File

@ -35,8 +35,7 @@ public class Normalization {
}
public static String normalizePunctuation(String name) {
// remove/normalize special characters
return normalizePunctuation(name, "", " ").trim();
return normalizePunctuation(name, "", " ");
}
public static String normalizePunctuation(String name, String apostrophe, String space) {