Skip to content

Commit

Permalink
Fix broken internal API Explorer tests.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 583123629
Change-Id: I42b5b747bb3b12295a207de96e150471e3c04271
  • Loading branch information
gae-java-bot committed Nov 16, 2023
1 parent 620a0a8 commit c1b0aa9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -968,7 +968,7 @@ private File populateStagingDirectory(
statusUpdate("Warning: See https://cloud.google.com/appengine/docs/flexible/java/upgrading");
}

boolean isServlet31OrAbove = !"2.5".equals(servletVersion);
boolean isServlet31OrAbove = servletVersion != null && !"2.5".equals(servletVersion);
// Do not create quickstart for Java7 standardapps, even is Servlet 3.1 schema is used.
// This behaviour is compatible with what was there before supporting Java8, we just now print
// a warning.
Expand Down

0 comments on commit c1b0aa9

Please sign in to comment.