Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix typo

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1076587 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
markt-asf committed Mar 3, 2011
1 parent 880b1a4 commit 3ac2b5c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -482,7 +482,7 @@ public void invoke(Request request, Response response)
// The Servlet may specify security constraints through annotations.
// Ensure that they have been processed before constraints are checked
Wrapper wrapper = (Wrapper) request.getMappingData().wrapper;
if (wrapper.getServlet() != null) {
if (wrapper.getServlet() == null) {
wrapper.load();
}

Expand Down

0 comments on commit 3ac2b5c

Please sign in to comment.