public Reader getContent()

in src/main/java/org/apache/sling/graphql/schema/aggregator/impl/PartialReader.java [88:92]


        public Reader getContent() throws IOException {
            final Reader r = sectionSource.get();
            r.skip(startCharIndex);
            return new BoundedReader(r, endCharIndex - startCharIndex);
        }