Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2013-09-05 23:04:51 +0000
committerStephan Herrmann2013-09-06 22:33:28 +0000
commit529142eb4df6dfd5acc2a13d84219a95bd5359c3 (patch)
tree10efa97e0a4eb24192f30f445dac2232c6c8afad /testplugins/org.eclipse.objectteams.otdt.ui.tests.dom/src/org/eclipse/objectteams/otdt/ui/tests
parent0ae1020e8eedca8f638c46e8131016973be22bf3 (diff)
downloadorg.eclipse.objectteams-529142eb4df6dfd5acc2a13d84219a95bd5359c3.tar.gz
org.eclipse.objectteams-529142eb4df6dfd5acc2a13d84219a95bd5359c3.tar.xz
org.eclipse.objectteams-529142eb4df6dfd5acc2a13d84219a95bd5359c3.zip
Merge fixes:
- Re-applied parts from ea2c66d41813ffe0a73e9227d41cf335eedf7fb6 (orig) that got lost during merging. - Repair InvocationSite as of Bug 384380 (one method lost). - Import fixes in tests
Diffstat (limited to 'testplugins/org.eclipse.objectteams.otdt.ui.tests.dom/src/org/eclipse/objectteams/otdt/ui/tests')
-rw-r--r--testplugins/org.eclipse.objectteams.otdt.ui.tests.dom/src/org/eclipse/objectteams/otdt/ui/tests/dom/rewrite/describing/TypeDeclarationTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/testplugins/org.eclipse.objectteams.otdt.ui.tests.dom/src/org/eclipse/objectteams/otdt/ui/tests/dom/rewrite/describing/TypeDeclarationTest.java b/testplugins/org.eclipse.objectteams.otdt.ui.tests.dom/src/org/eclipse/objectteams/otdt/ui/tests/dom/rewrite/describing/TypeDeclarationTest.java
index 3df6304f2..14615141c 100644
--- a/testplugins/org.eclipse.objectteams.otdt.ui.tests.dom/src/org/eclipse/objectteams/otdt/ui/tests/dom/rewrite/describing/TypeDeclarationTest.java
+++ b/testplugins/org.eclipse.objectteams.otdt.ui.tests.dom/src/org/eclipse/objectteams/otdt/ui/tests/dom/rewrite/describing/TypeDeclarationTest.java
@@ -195,7 +195,7 @@ public class TypeDeclarationTest extends AstRewritingDescribingTest {
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("R1.java", buf.toString(), false, null);
- CompilationUnit astRoot= createAST3(cu);
+ CompilationUnit astRoot= createAST(cu);
ASTRewrite rewrite= ASTRewrite.create(astRoot.getAST());
AST ast= astRoot.getAST();
@@ -222,7 +222,7 @@ public class TypeDeclarationTest extends AstRewritingDescribingTest {
// re-get to also challenge ASTConverter and NaiveASTFlattener:
IPackageFragment pack2 = this.sourceFolder.createPackageFragment("test2.MyTeam", false, null);
cu= pack2.createCompilationUnit("R1.java", buf.toString(), false, null);
- astRoot= createAST3(cu);
+ astRoot= createAST(cu);
assertEqualString(astRoot.toString(), buf.toString());
}
}

Back to the top