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-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org