All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.patches.01-LPS-61373.patch Maven / Gradle / Ivy

The newest version!
diff --git a/org/apache/jasper/compiler/Jsr199JavaCompiler.java b/org/apache/jasper/compiler/Jsr199JavaCompiler.java
index 11f02ca..a35a289 100644
--- a/org/apache/jasper/compiler/Jsr199JavaCompiler.java
+++ b/org/apache/jasper/compiler/Jsr199JavaCompiler.java
@@ -88,7 +88,7 @@ import org.apache.jasper.JspCompilationContext;
 public class Jsr199JavaCompiler implements JavaCompiler {
 
     protected List cpath;
-    private JspRuntimeContext rtctxt;
+    protected JspRuntimeContext rtctxt;
     protected ArrayList classFiles;
         // a JSP compilation can produce multiple class files, we need to
         // keep track of all generated bytecodes..
@@ -98,7 +98,7 @@ public class Jsr199JavaCompiler implements JavaCompiler {
     private JspCompilationContext ctxt;
     protected String javaFileName;
     protected String javaEncoding;
-    private ErrorDispatcher errDispatcher;
+    protected ErrorDispatcher errDispatcher;
 
     public void init(JspCompilationContext ctxt,
                      ErrorDispatcher errDispatcher,
@@ -267,7 +267,7 @@ public class Jsr199JavaCompiler implements JavaCompiler {
     }
 
 
-    protected static class BytecodeFile extends SimpleJavaFileObject {
+    public static class BytecodeFile extends SimpleJavaFileObject {
 
         private byte[] bytecode;
         private String className;
@@ -277,11 +277,11 @@ public class Jsr199JavaCompiler implements JavaCompiler {
             this.className = className;
         }
 
-        String getClassName() {
+        public String getClassName() {
             return this.className;
         }
 
-        byte[] getBytecode() {
+        public byte[] getBytecode() {
             return this.bytecode;
         }
 
@@ -383,3 +383,4 @@ public class Jsr199JavaCompiler implements JavaCompiler {
 
     }
 }
+/* @generated */
\ No newline at end of file
diff --git a/org/apache/jasper/compiler/Node.java b/org/apache/jasper/compiler/Node.java
index c8dc6c2..d176572 100644
--- a/org/apache/jasper/compiler/Node.java
+++ b/org/apache/jasper/compiler/Node.java
@@ -90,7 +90,7 @@ import org.xml.sax.Attributes;
  * @author Mark Roth
  */
 
-abstract class Node implements TagConstants {
+public abstract class Node implements TagConstants {
 
     private static final VariableInfo[] ZERO_VARIABLE_INFO = { };
     
@@ -2501,3 +2501,4 @@ abstract class Node implements TagConstants {
 	}
     }
 }
+/* @generated */
\ No newline at end of file




© 2015 - 2025 Weber Informatics LLC | Privacy Policy