Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkmoore2007-08-27 21:09:10 +0000
committerkmoore2007-08-27 21:09:10 +0000
commitf2b20aa1793160951cb71f8b64ac1c02cf288379 (patch)
treecb11b212bdd3f7cf4bda3ae1d34f3c7aeab183ab /jpa/plugins
parenta87b1ff3cb02500e1c5f533c1cc1ceac71a9fa22 (diff)
downloadwebtools.dali-f2b20aa1793160951cb71f8b64ac1c02cf288379.tar.gz
webtools.dali-f2b20aa1793160951cb71f8b64ac1c02cf288379.tar.xz
webtools.dali-f2b20aa1793160951cb71f8b64ac1c02cf288379.zip
200957
Diffstat (limited to 'jpa/plugins')
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/content/orm/XmlPersistentType.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/content/orm/XmlPersistentType.java b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/content/orm/XmlPersistentType.java
index 34dfe4ca88..a2b9053b9f 100644
--- a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/content/orm/XmlPersistentType.java
+++ b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/content/orm/XmlPersistentType.java
@@ -855,7 +855,9 @@ public class XmlPersistentType extends XmlEObject implements IPersistentType
this.parentPersistentType = null;
return;
}
- ITypeBinding typeBinding = javaPersistentType.getType().typeBinding(context.astRoot());
+ //TODO need to fix the performance issue that results here
+ //setting this back for now because of bug 200957 in the M1 release
+ ITypeBinding typeBinding = javaPersistentType.getType().typeBinding(javaPersistentType.getType().astRoot());
IPersistentType parentPersistentType = JavaPersistentType.parentPersistentType(context, typeBinding);
this.parentPersistentType = parentPersistentType;
return;

Back to the top