private boolean sameContents()

in src/main/java/org/apache/maven/archiver/PomPropertiesUtil.java [54:61]


    private boolean sameContents(Properties props, File file) throws IOException {
        if (!file.isFile()) {
            return false;
        }

        Properties fileProps = loadPropertiesFile(file);
        return fileProps.equals(props);
    }