public Path toAbsolutePath()

in src/main/java/org/apache/sling/commons/jcr/file/internal/JcrPath.java [229:236]


    public Path toAbsolutePath() {
        logger.info("toAbsolutePath: {}", path);
        if (isAbsolute()) {
            return this;
        } else {
            return new JcrPath(fileSystem, "/".concat(path));
        }
    }