Fix checkstyle

This commit is contained in:
Trustin Lee 2014-12-04 18:40:36 +09:00
parent 0f8ccbb1ac
commit b62a6db61e

View File

@ -107,7 +107,6 @@ public class DomainNameMapping<V> implements Mapping<String, V> {
private static String normalizeHostname(String hostname) {
if (needsNormalization(hostname)) {
hostname = IDN.toASCII(hostname, IDN.ALLOW_UNASSIGNED);
}
return hostname.toLowerCase(Locale.US);
}