Author: markt Date: Sat Jan 24 09:57:55 2015 New Revision: 1654486 URL: http://svn.apache.org/r1654486 Log: Java8 Javadoc
Modified: tomcat/trunk/java/org/apache/coyote/ErrorState.java Modified: tomcat/trunk/java/org/apache/coyote/ErrorState.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/ErrorState.java?rev=1654486&r1=1654485&r2=1654486&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/coyote/ErrorState.java (original) +++ tomcat/trunk/java/org/apache/coyote/ErrorState.java Sat Jan 24 09:57:55 2015 @@ -54,6 +54,11 @@ public enum ErrorState { /** * Compare this ErrorState with the provided ErrorState and return the most * severe. + * + * @param input The error state to compare to this one + * + * @return The most severe error state from the the provided error state and + * this one */ public ErrorState getMostSevere(ErrorState input) { if (input.severity > this.severity) { --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org