From: markt Date: Tue, 21 Jul 2009 06:24:58 +0000 (+0000) Subject: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47518 X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=d0c00f1b58008e2450dbb97d27097fd536e88dbb;p=tomcat7.0 Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47518 Fix reference to old method in Valve Javadoc Patch by Christopher Schultz git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@796155 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/catalina/Valve.java b/java/org/apache/catalina/Valve.java index c31965784..858812dbe 100644 --- a/java/org/apache/catalina/Valve.java +++ b/java/org/apache/catalina/Valve.java @@ -94,7 +94,7 @@ public interface Valve { * and pass them on. *
  • If the corresponding Response was not generated (and control was not * returned, call the next Valve in the pipeline (if there is one) by - * executing context.invokeNext(). + * executing getNext().invoke(). *
  • Examine, but not modify, the properties of the resulting Response * (which was created by a subsequently invoked Valve or Container). * @@ -112,9 +112,9 @@ public interface Valve { * unless it is completely generating the response, or wrapping the * request before passing it on. *
  • Modify the HTTP headers included with the Response after the - * invokeNext() method has returned. + * getNext().invoke() method has returned. *
  • Perform any actions on the output stream associated with the - * specified Response after the invokeNext() method has + * specified Response after the getNext().invoke() method has * returned. * *