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
The following commit(s) were added to refs/heads/7.0.x by this push: new 005d790 Add missing Javadoc 005d790 is described below commit 005d790c950a3a77edca6dbf1324190bf7d9c529 Author: Mark Thomas <ma...@apache.org> AuthorDate: Tue Aug 11 17:02:26 2020 +0100 Add missing Javadoc --- java/org/apache/tomcat/util/http/parser/EntityTag.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/java/org/apache/tomcat/util/http/parser/EntityTag.java b/java/org/apache/tomcat/util/http/parser/EntityTag.java index abab6b7..9384b8d 100644 --- a/java/org/apache/tomcat/util/http/parser/EntityTag.java +++ b/java/org/apache/tomcat/util/http/parser/EntityTag.java @@ -24,14 +24,16 @@ import java.util.Set; public class EntityTag { /** + * Parse the given input as (per RFC 7232) 1#entity-tag. * - * @param input - * @param includeWeak + * @param input The input to parse + * @param includeWeak Should weak tags be included in the set of returned + * values? * * @return The set of parsed entity tags or {@code null} if the header is * invalid * - * @throws IOException + * @throws IOException If an I/O occurs during the parsing */ public static Set<String> parseEntityTag(StringReader input, boolean includeWeak) throws IOException { --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org