public FileChannel truncate()

in src/main/java/org/apache/sling/commons/jcr/file/internal/JcrFileChannel.java [140:144]


    public FileChannel truncate(final long size) throws IOException {
        logger.info("truncate", size);
        fileChannel.truncate(size);
        return this;
    }