private Properties loadPropertiesFile()

in src/main/java/org/apache/maven/shared/archiver/PomPropertiesUtil.java [43:49]


    private Properties loadPropertiesFile(Path file) throws IOException {
        Properties fileProps = new Properties();
        try (InputStream istream = Files.newInputStream(file)) {
            fileProps.load(istream);
            return fileProps;
        }
    }