Skip to content
This repository has been archived by the owner on Aug 17, 2018. It is now read-only.

Commit

Permalink
javaee-api-api/issue55 NullPointerException is thrown if application …
Browse files Browse the repository at this point in the history
…doesn't include precompiled classes.
  • Loading branch information
ruolli committed Oct 23, 2017
1 parent 3c6b171 commit 13d7122
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,9 @@ public boolean keepGenerated() {

public void incrementRemoved() {
if (removed > 1) {
jspCompiler.removeGeneratedFiles();
if(jspCompiler != null) {
jspCompiler.removeGeneratedFiles();
}
if( rctxt != null )
rctxt.removeWrapper(jspUri);
}
Expand Down

0 comments on commit 13d7122

Please sign in to comment.