Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorangelozerr2018-11-21 19:19:50 +0000
committerNoopur Gupta2018-11-23 06:44:58 +0000
commitcf06059a975abc71973b463ffceb83b86e18ede8 (patch)
tree413a4e21c5e8f28a6158decfbbd3afd3901ff3f3
parent429519b34d850cc93f7bd95dc51c69e69ef6c8d1 (diff)
downloadeclipse.jdt.ui-cf06059a975abc71973b463ffceb83b86e18ede8.tar.gz
eclipse.jdt.ui-cf06059a975abc71973b463ffceb83b86e18ede8.tar.xz
eclipse.jdt.ui-cf06059a975abc71973b463ffceb83b86e18ede8.zip
Bug 541414 - [code mining] Enabling code mining should enable "Show
references" and "Show implementations" Change-Id: I7e87f248896f461aedd28f3a681b44c482775772 Signed-off-by: angelozerr <angelo.zerr@gmail.com>
-rw-r--r--org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/PreferenceConstants.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/PreferenceConstants.java b/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/PreferenceConstants.java
index d0bf105b63..866e9a4993 100644
--- a/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/PreferenceConstants.java
+++ b/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/PreferenceConstants.java
@@ -4206,11 +4206,11 @@ public class PreferenceConstants {
store.setDefault(PreferenceConstants.EDITOR_CODEMINING_ENABLED, false);
store.setDefault(EDITOR_JAVA_CODEMINING_SHOW_CODEMINING_AT_LEAST_ONE,
true);
- store.setDefault(EDITOR_JAVA_CODEMINING_SHOW_REFERENCES, false);
+ store.setDefault(EDITOR_JAVA_CODEMINING_SHOW_REFERENCES, true);
store.setDefault(EDITOR_JAVA_CODEMINING_SHOW_REFERENCES_ON_CLASSES, true);
store.setDefault(EDITOR_JAVA_CODEMINING_SHOW_REFERENCES_ON_FIELDS, false);
store.setDefault(EDITOR_JAVA_CODEMINING_SHOW_REFERENCES_ON_METHODS, true);
- store.setDefault(EDITOR_JAVA_CODEMINING_SHOW_IMPLEMENTATIONS, false);
+ store.setDefault(EDITOR_JAVA_CODEMINING_SHOW_IMPLEMENTATIONS, true);
}
/**

Back to the top