private InputStream getStream()

in src/main/java/org/apache/sling/scripting/javascript/wrapper/ScriptableNode.java [555:564]


        private InputStream getStream() throws IOException {
            if (delegatee == null) {
                try {
                    delegatee = value.getStream();
                } catch (RepositoryException re) {
                    throw (IOException) new IOException(re.getMessage()).initCause(re);
                }
            }
            return delegatee;
        }