private String getEncoding()

in src/main/java/org/apache/maven/plugins/acr/AcrMojo.java [282:287]


    private String getEncoding(Path xmlFile) throws IOException {
        try (XmlStreamReader xmlReader =
                XmlStreamReader.builder().setPath(xmlFile).get()) {
            return xmlReader.getEncoding();
        }
    }