You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2013/01/10 13:11:01 UTC

svn commit: r1431311 - /tomcat/tc7.0.x/trunk/test/org/apache/catalina/deploy/TestWebXml.java

Author: markt
Date: Thu Jan 10 12:11:01 2013
New Revision: 1431311

URL: http://svn.apache.org/viewvc?rev=1431311&view=rev
Log:
Java 6 not 7

Modified:
    tomcat/tc7.0.x/trunk/test/org/apache/catalina/deploy/TestWebXml.java

Modified: tomcat/tc7.0.x/trunk/test/org/apache/catalina/deploy/TestWebXml.java
URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/test/org/apache/catalina/deploy/TestWebXml.java?rev=1431311&r1=1431310&r2=1431311&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/test/org/apache/catalina/deploy/TestWebXml.java (original)
+++ tomcat/tc7.0.x/trunk/test/org/apache/catalina/deploy/TestWebXml.java Thu Jan 10 12:11:01 2013
@@ -235,7 +235,7 @@ public class TestWebXml {
         WebXml f1 = new WebXml();
         WebXml f2 = new WebXml();
 
-        HashSet<WebXml> fragments = new HashSet<>();
+        HashSet<WebXml> fragments = new HashSet<WebXml>();
         fragments.add(f1);
         fragments.add(f2);
 
@@ -253,7 +253,7 @@ public class TestWebXml {
         WebXml f1 = new WebXml();
         WebXml f2 = new WebXml();
 
-        HashSet<WebXml> fragments = new HashSet<>();
+        HashSet<WebXml> fragments = new HashSet<WebXml>();
         fragments.add(f1);
         fragments.add(f2);
 



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