in src/main/java/org/apache/sling/scripting/core/impl/bundled/Script.java [61:73]
private String getSourceCode() throws IOException {
if (sourceCode == null) {
readLock.lock();
try {
if (sourceCode == null) {
sourceCode = IOUtils.toString(url.openStream(), StandardCharsets.UTF_8);
}
} finally {
readLock.unlock();
}
}
return sourceCode;
}