This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git

commit 65ae8d38804ce0fde274279c03c93ee2b333d2a1
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Fri Sep 27 15:59:11 2019 +0100

    Align with 8.5.x. Spacing and Javadoc.
---
 java/org/apache/catalina/Pipeline.java | 16 ++++------------
 1 file changed, 4 insertions(+), 12 deletions(-)

diff --git a/java/org/apache/catalina/Pipeline.java 
b/java/org/apache/catalina/Pipeline.java
index 49b2888..eef24a9 100644
--- a/java/org/apache/catalina/Pipeline.java
+++ b/java/org/apache/catalina/Pipeline.java
@@ -14,8 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
-
 package org.apache.catalina;
 
 
@@ -39,12 +37,8 @@ package org.apache.catalina;
  */
 public interface Pipeline {
 
-
-    // ------------------------------------------------------------- Properties
-
-
     /**
-     * <p>Return the Valve instance that has been distinguished as the basic
+     * @return the Valve instance that has been distinguished as the basic
      * Valve for this Pipeline (if any).
      */
     public Valve getBasic();
@@ -65,9 +59,6 @@ public interface Pipeline {
     public void setBasic(Valve valve);
 
 
-    // --------------------------------------------------------- Public Methods
-
-
     /**
      * <p>Add a new Valve to the end of the pipeline associated with this
      * Container.  Prior to adding the Valve, the Valve's
@@ -95,7 +86,7 @@ public interface Pipeline {
 
 
     /**
-     * Return the set of Valves in the pipeline associated with this
+     * @return the set of Valves in the pipeline associated with this
      * Container, including the basic Valve (if any).  If there are no
      * such Valves, a zero-length array is returned.
      */
@@ -118,11 +109,12 @@ public interface Pipeline {
 
 
     /**
-     * <p>Return the Valve instance that has been distinguished as the basic
+     * @return the Valve instance that has been distinguished as the basic
      * Valve for this Pipeline (if any).
      */
     public Valve getFirst();
 
+
     /**
      * Returns true if all the valves in this pipeline support async, false 
otherwise
      * @return true if all the valves in this pipeline support async, false 
otherwise


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to