### Eclipse Workspace Patch 1.0 #P org.eclipse.jdt.core.tests.compiler Index: src/org/eclipse/jdt/core/tests/compiler/parser/DietRecoveryTest.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/parser/DietRecoveryTest.java,v retrieving revision 1.64 diff -u -r1.64 DietRecoveryTest.java --- src/org/eclipse/jdt/core/tests/compiler/parser/DietRecoveryTest.java 13 Apr 2011 16:10:50 -0000 1.64 +++ src/org/eclipse/jdt/core/tests/compiler/parser/DietRecoveryTest.java 21 Apr 2011 17:10:37 -0000 @@ -4657,15 +4657,23 @@ String expectedCompletionDietUnitToString = "package ZKentTest;\n" + - "import java.awt.color.*;\n" + - "public class A {\n" + - " int[] ii;\n" + - " public A() {\n" + - " }\n" + - " A foo(int i) {\n" + - " }\n" + - " int bar() {\n" + - " }\n" + + "import java.awt.color.*;\n" + + "public class A {\n" + + " int[] ii;\n" + + " public A() {\n" + + " }\n" + + " A foo(int i) {\n" + + " }\n" + + "}\n" + + "class Local {\n" + + " Local() {\n" + + " }\n" + + " int hello() {\n" + + " }\n" + + " int world() {\n" + + " }\n" + + " void foo() {\n" + + " }\n" + "}\n"; String testName = "";