protected Dictionary load()

in src/main/java/org/apache/sling/installer/provider/jcr/impl/ConfigNodeConverter.java [69:79]


    protected Dictionary<String, Object> load(Node n) throws RepositoryException {
        Dictionary<String, Object> result = new Hashtable<String, Object>();

        log.debug("Loading config from Node {}", n.getPath());

        // load default values from node itself
        log.debug("Loading {} properties", n.getPath());
        loadProperties(result, n);

        return result;
    }