### Eclipse Workspace Patch 1.0 #P org.eclipse.jdt.core.tests.compiler Index: src/org/eclipse/jdt/core/tests/compiler/regression/MethodVerifyTest.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/MethodVerifyTest.java,v retrieving revision 1.228 diff -u -r1.228 MethodVerifyTest.java --- src/org/eclipse/jdt/core/tests/compiler/regression/MethodVerifyTest.java 23 Aug 2011 06:03:50 -0000 1.228 +++ src/org/eclipse/jdt/core/tests/compiler/regression/MethodVerifyTest.java 28 Sep 2011 10:38:43 -0000 @@ -13439,7 +13439,7 @@ String output = this.complianceLevel == ClassFileConstants.JDK1_6 ? "----------\n" + "1. WARNING in Test.java (at line 3)\n" + - " public class Test extends LinkedHashMap> {\n" + + " public class Test extends HashMap> {\n" + " ^^^^\n" + "The serializable class Test does not declare a static final serialVersionUID field of type long\n" + "----------\n" + @@ -13451,7 +13451,7 @@ "3. WARNING in Test.java (at line 5)\n" + " public Collection get(Key k) { return null; }\n" + " ^^^^^^^^^^\n" + - "Name clash: The method get(Key) of type Test has the same erasure as get(Object) of type LinkedHashMap but does not override it\n" + + "Name clash: The method get(Key) of type Test has the same erasure as get(Object) of type HashMap but does not override it\n" + "----------\n" + "4. ERROR in Test.java (at line 6)\n" + " Zork z;\n" + @@ -13460,7 +13460,7 @@ "----------\n": "----------\n" + "1. WARNING in Test.java (at line 3)\n" + - " public class Test extends LinkedHashMap> {\n" + + " public class Test extends HashMap> {\n" + " ^^^^\n" + "The serializable class Test does not declare a static final serialVersionUID field of type long\n" + "----------\n" + @@ -13472,7 +13472,7 @@ "3. ERROR in Test.java (at line 5)\n" + " public Collection get(Key k) { return null; }\n" + " ^^^^^^^^^^\n" + - "Name clash: The method get(Key) of type Test has the same erasure as get(Object) of type LinkedHashMap but does not override it\n" + + "Name clash: The method get(Key) of type Test has the same erasure as get(Object) of type HashMap but does not override it\n" + "----------\n" + "4. ERROR in Test.java (at line 6)\n" + " Zork z;\n" + @@ -13483,8 +13483,8 @@ new String[] { "Test.java", "import java.util.Collection;\n" + - "import java.util.LinkedHashMap;\n" + - "public class Test extends LinkedHashMap> {\n" + + "import java.util.HashMap;\n" + + "public class Test extends HashMap> {\n" + " public Collection put(Key k, Value v) { return null; }\n" + " public Collection get(Key k) { return null; }\n" + " Zork z;\n" +