Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.ui/plugin.xml7
1 files changed, 5 insertions, 2 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.ui/plugin.xml b/jpa/plugins/org.eclipse.jpt.jpa.ui/plugin.xml
index 238eea6390..0d1d6332f5 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.ui/plugin.xml
+++ b/jpa/plugins/org.eclipse.jpt.jpa.ui/plugin.xml
@@ -186,8 +186,9 @@
name="%JpaProposalCategory">
</proposalCategory>
+ <!-- activate = "false" to temporarily fix bug 386393 -->
<proposalComputer
- activate="true"
+ activate="false"
categoryId="org.eclipse.jpt.jpa.ui.xml.jpaProposalCategory"
class="org.eclipse.jpt.jpa.ui.internal.jpql.JpaJpqlSseCompletionProposalComputer"
id="org.eclipse.jpt.jpa.ui.internal.jpql.JpaJpqlSseCompletionProposalComputer">
@@ -195,8 +196,10 @@
</proposalComputer>
<!-- Use xml instead of more specific mappingFile content type so JPA Proposals appears in the XML preferences -->
+
+ <!-- activate = "false" to temporarily fix bug 386393 -->
<proposalComputer
- activate="true"
+ activate="false"
categoryId="org.eclipse.jpt.jpa.ui.xml.jpaProposalCategory"
class="org.eclipse.jpt.jpa.ui.internal.JpaXmlCompletionProposalComputer"
id="org.eclipse.jpt.jpa.ui.internal.JpaXmlCompletionProposalComputer">

Back to the top