public Path resolve()

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


    public Path resolve(String other) {
        logger.info("resolving given path {} against this path {}", other, this);
        final Path path = new JcrPath(fileSystem, other); // TODO InvalidPathException
        return resolve(path);
    }