in library/src/main/java/com/alibaba/dcm/internal/InetAddressCacheUtilCommons.java [189:205]
public static boolean isNewInetAddressImpl() {
if (isNew != null) return isNew;
synchronized (InetAddressCacheUtilCommons.class) {
// double check
if (isNew != null) return isNew;
try {
InetAddress.class.getDeclaredField("expirySet");
isNew = true;
} catch (NoSuchFieldException e) {
isNew = false;
}
return isNew;
}
}