This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push: new cfd498e Add missing Javadoc cfd498e is described below commit cfd498eb151b55b73919e74ffbdcd50eeb9e28eb 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