Author: markt Date: Wed Jan 20 14:58:19 2016 New Revision: 1725734 URL: http://svn.apache.org/viewvc?rev=1725734&view=rev Log: Javadoc stragglers
Modified: tomcat/trunk/java/org/apache/tomcat/util/digester/ArrayStack.java tomcat/trunk/java/org/apache/tomcat/util/http/fileupload/util/mime/QuotedPrintableDecoder.java Modified: tomcat/trunk/java/org/apache/tomcat/util/digester/ArrayStack.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/digester/ArrayStack.java?rev=1725734&r1=1725733&r2=1725734&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/tomcat/util/digester/ArrayStack.java (original) +++ tomcat/trunk/java/org/apache/tomcat/util/digester/ArrayStack.java Wed Jan 20 14:58:19 2016 @@ -38,6 +38,8 @@ import java.util.EmptyStackException; * <p>Unlike <code>Stack</code>, <code>ArrayStack</code> accepts null entries. * </p> * + * @param <E> Type of object in this stack + * * @see java.util.Stack * @since Digester 1.6 (from Commons Collections 1.0) */ Modified: tomcat/trunk/java/org/apache/tomcat/util/http/fileupload/util/mime/QuotedPrintableDecoder.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/http/fileupload/util/mime/QuotedPrintableDecoder.java?rev=1725734&r1=1725733&r2=1725734&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/tomcat/util/http/fileupload/util/mime/QuotedPrintableDecoder.java (original) +++ tomcat/trunk/java/org/apache/tomcat/util/http/fileupload/util/mime/QuotedPrintableDecoder.java Wed Jan 20 14:58:19 2016 @@ -44,7 +44,8 @@ final class QuotedPrintableDecoder { * @param out The output stream used to return the decoded data. * * @return the number of bytes produced. - * @exception IOException + * @exception IOException if aproblem occurs during either decoding or + * writing to the stream */ public static int decode(byte[] data, OutputStream out) throws IOException { int off = 0; --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org