diff options
| author | Noopur Gupta | 2018-11-23 06:49:29 +0000 |
|---|---|---|
| committer | Noopur Gupta | 2018-11-23 06:49:29 +0000 |
| commit | eb5b6f701974388ef7a472068f5b6fa050bc26ef (patch) | |
| tree | a1668bfa6c9fc2ecea4006b281124495dad51c7c | |
| parent | cf06059a975abc71973b463ffceb83b86e18ede8 (diff) | |
| download | eclipse.jdt.ui-eb5b6f701974388ef7a472068f5b6fa050bc26ef.tar.gz eclipse.jdt.ui-eb5b6f701974388ef7a472068f5b6fa050bc26ef.tar.xz eclipse.jdt.ui-eb5b6f701974388ef7a472068f5b6fa050bc26ef.zip | |
Bug 541414 - [code mining] Enabling code mining should enable "Show
references" and "Show implementations"
enable field references
Change-Id: I29420bbc2dcbfb407e97ab9d39a5610443f65933
| -rw-r--r-- | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/PreferenceConstants.java | 2 |
1 files changed, 1 insertions, 1 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 866e9a4993..49d32a0d68 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 @@ -4208,7 +4208,7 @@ public class PreferenceConstants { true); 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_FIELDS, true); store.setDefault(EDITOR_JAVA_CODEMINING_SHOW_REFERENCES_ON_METHODS, true); store.setDefault(EDITOR_JAVA_CODEMINING_SHOW_IMPLEMENTATIONS, true); } |
