Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Jaun2013-10-29 21:36:07 +0000
committerChris Jaun2013-10-29 21:36:07 +0000
commitb104b425b470b2a7a5e7fdcfc16a23bdda9cf977 (patch)
tree445d4f3e064913602fcf012cb200abd51efa840d
parentb3c00d61105146af82a15184ef93599b8810e49c (diff)
downloadwebtools.maps-b104b425b470b2a7a5e7fdcfc16a23bdda9cf977.tar.gz
webtools.maps-b104b425b470b2a7a5e7fdcfc16a23bdda9cf977.tar.xz
webtools.maps-b104b425b470b2a7a5e7fdcfc16a23bdda9cf977.zip
[409910] [performance] Avoid unwanted completion proposal computations
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/PreferenceConstants.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/PreferenceConstants.java b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/PreferenceConstants.java
index 8f5055eaa..aa4dfcb89 100644
--- a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/PreferenceConstants.java
+++ b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/PreferenceConstants.java
@@ -3481,7 +3481,7 @@ public class PreferenceConstants {
store.setDefault(PreferenceConstants.EDITOR_JAVADOC_DEFAULT_BOLD, false);
store.setDefault(PreferenceConstants.EDITOR_JAVADOC_DEFAULT_ITALIC, false);
- store.setDefault(PreferenceConstants.CODEASSIST_AUTOACTIVATION, true);
+ store.setDefault(PreferenceConstants.CODEASSIST_AUTOACTIVATION, false);
store.setDefault(PreferenceConstants.CODEASSIST_AUTOACTIVATION_DELAY, 300);
store.setDefault(PreferenceConstants.CODEASSIST_AUTOINSERT, true);

Back to the top