Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2016-11-29 16:51:10 +0000
committerDani Megert2016-11-29 16:51:10 +0000
commit1405915ae63b652eb8fc89a74e80298c592192a5 (patch)
tree5ebd52f4c85b14e63e509540ded469f90024c239
parentd528dbc1af351a5a7f89693cffcca207b027b637 (diff)
downloadeclipse.jdt.ui-1405915ae63b652eb8fc89a74e80298c592192a5.tar.gz
eclipse.jdt.ui-1405915ae63b652eb8fc89a74e80298c592192a5.tar.xz
eclipse.jdt.ui-1405915ae63b652eb8fc89a74e80298c592192a5.zip
Fixed bug 505816: [typing] Automatically insert Braces at correct position - turn on by defaultI20161129-2330I20161129-2000
-rw-r--r--org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/PreferenceConstants.java1
1 files changed, 1 insertions, 0 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 8b4ed637ba..477b65074d 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
@@ -3914,6 +3914,7 @@ public class PreferenceConstants {
store.setDefault(PreferenceConstants.EDITOR_CLOSE_BRACKETS, true);
store.setDefault(PreferenceConstants.EDITOR_CLOSE_BRACES, true);
store.setDefault(PreferenceConstants.EDITOR_CLOSE_JAVADOCS, true);
+ store.setDefault(PreferenceConstants.EDITOR_SMART_OPENING_BRACE, true);
store.setDefault(PreferenceConstants.EDITOR_WRAP_STRINGS, true);
store.setDefault(PreferenceConstants.EDITOR_ESCAPE_STRINGS, true);
store.setDefault(PreferenceConstants.EDITOR_ADD_JAVADOC_TAGS, true);

Back to the top