library/src/main/java/com/alibaba/dcm/DnsCacheManipulator.java [133:140]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            Properties properties = new Properties();
            properties.load(inputStream);
            inputStream.close();
            setDnsCache(properties);
        } catch (Exception e) {
            final String message = String.format("Fail to loadDnsCacheConfig from %s, cause: %s",
                    propertiesFileName, e);
            throw new DnsCacheManipulatorException(message, e);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



library/src/main/java/com/alibaba/dcm/DnsCacheManipulator.java [154:161]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        Properties properties = new Properties();
        properties.load(inputStream);
        inputStream.close();
        setDnsCache(properties);
      } catch (Exception e) {
        final String message = String.format("Fail to loadDnsCacheConfig from %s, cause: %s",
            propertiesFileName, e);
        throw new DnsCacheManipulatorException(message, e);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



