Name normalization has been space sensitive for nearly 7 years now. Stop saying otherwise.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6472 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Charlie Groves
2011-01-31 07:08:12 +00:00
parent 8b3bb03751
commit c19b395a43
+3 -11
View File
@@ -148,17 +148,12 @@ public class Name extends SimpleStreamableObject
}
/**
* Returns a normalized version of the supplied name. The default
* implementation is case and space insensitive.
* Returns a normalized version of the supplied name. The default implementation is case
* insensitive.
*/
protected String normalize (String name)
{
name = name.toLowerCase();
// Originally we removed whitespace as part of normalization, but
// that ran aground when a player was named "Badbob" and an npp
// was named "Bad Bob". -RG
//name = _compactor.matcher(name).replaceAll("");
return name;
return name.toLowerCase();
}
/**
@@ -186,7 +181,4 @@ public class Name extends SimpleStreamableObject
/** The normalized name text. */
protected transient String _normal;
/** Used to strip spaces from names. */
//protected static Pattern _compactor = Pattern.compile("\\s");
}