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 89deceb  Java 6 compat
89deceb is described below

commit 89deceb56a13b4d9c8c8b28c5a6fc957e10d6394
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Wed Aug 12 16:51:02 2020 +0100

    Java 6 compat
---
 java/org/apache/tomcat/util/http/parser/EntityTag.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/java/org/apache/tomcat/util/http/parser/EntityTag.java 
b/java/org/apache/tomcat/util/http/parser/EntityTag.java
index 9384b8d..2213075 100644
--- a/java/org/apache/tomcat/util/http/parser/EntityTag.java
+++ b/java/org/apache/tomcat/util/http/parser/EntityTag.java
@@ -37,7 +37,7 @@ public class EntityTag {
      */
     public static Set<String> parseEntityTag(StringReader input, boolean 
includeWeak) throws IOException {
 
-        HashSet<String> result = new HashSet<>();
+        HashSet<String> result = new HashSet<String>();
 
         while (true) {
             boolean strong = false;


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

Reply via email to