Fix checkstyle

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

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);
}