This is an automated email from the ASF dual-hosted git repository. radu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-sightly-repl.git
commit 64a02fe877686e48cc95e983ef5af26ef37a5b59 Author: Radu Cotescu <[email protected]> AuthorDate: Mon Aug 24 19:57:55 2020 +0200 SLING-9135 - Move org.apache.sling.scripting.sightly.java.compiler.JavaEscapeUtils into org.apache.sling.commons.compiler --- .../sling/scripting/sightly/repl/impl/REPLJavaSourceCodeServlet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/sling/scripting/sightly/repl/impl/REPLJavaSourceCodeServlet.java b/src/main/java/org/apache/sling/scripting/sightly/repl/impl/REPLJavaSourceCodeServlet.java index 590cc02..5e96483 100644 --- a/src/main/java/org/apache/sling/scripting/sightly/repl/impl/REPLJavaSourceCodeServlet.java +++ b/src/main/java/org/apache/sling/scripting/sightly/repl/impl/REPLJavaSourceCodeServlet.java @@ -85,7 +85,7 @@ public class REPLJavaSourceCodeServlet extends SlingSafeMethodsServlet { private String getClassSourceCode() { if (classesFolder != null && classesFolder.isDirectory()) { - File classFile = new File(classesFolder, "org/apache/sling/scripting/sightly/apps/repl/components/repl/template_html.java"); + File classFile = new File(classesFolder, "org/apache/sling/scripting/sightly/apps/repl/components/repl/template__002e__html.java"); if (classFile.isFile()) { try { return IOUtils.toString(new FileInputStream(classFile), "UTF-8");
