We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c6b171 commit 13d7122Copy full SHA for 13d7122
1 file changed
impl/src/main/java/org/apache/jasper/JspCompilationContext.java
@@ -602,7 +602,9 @@ public boolean keepGenerated() {
602
603
public void incrementRemoved() {
604
if (removed > 1) {
605
- jspCompiler.removeGeneratedFiles();
+ if(jspCompiler != null) {
606
+ jspCompiler.removeGeneratedFiles();
607
+ }
608
if( rctxt != null )
609
rctxt.removeWrapper(jspUri);
610
}
0 commit comments