protected Properties toProperties()

in src/it/setup-custom-toolchain/src/main/java/org/apache/maven/plugins/toolchains/its/custom/CustomToolchainFactory.java [126:135]


    protected Properties toProperties(Xpp3Dom dom) {
        Properties props = new Properties();

        Xpp3Dom[] children = dom.getChildren();
        for (Xpp3Dom child : children) {
            props.put(child.getName(), child.getValue());
        }

        return props;
    }