Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoopur Gupta2019-02-25 09:31:39 +0000
committerNoopur Gupta2019-02-25 09:31:39 +0000
commit82f4e5e641fe9e1f4161bab38df6c86da200aa04 (patch)
tree0bc8c2f41afdabe08ccdadd584f0c5389e9f7224
parentf26e10e6d753717248f9cd486315b5e93a4e27e4 (diff)
downloadeclipse.jdt.ui-82f4e5e641fe9e1f4161bab38df6c86da200aa04.tar.gz
eclipse.jdt.ui-82f4e5e641fe9e1f4161bab38df6c86da200aa04.tar.xz
eclipse.jdt.ui-82f4e5e641fe9e1f4161bab38df6c86da200aa04.zip
Bug 544617: [formatting] Operators not displayed correctly on profileI20190225-1800
-rw-r--r--org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/FormatterMessages.properties8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/FormatterMessages.properties b/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/FormatterMessages.properties
index af3ac6b8cb..29ba3b0016 100644
--- a/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/FormatterMessages.properties
+++ b/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/FormatterMessages.properties
@@ -34,10 +34,10 @@ FormatterModifyDialog_whiteSpace_pref_before_shift_operator=Before shift operato
FormatterModifyDialog_whiteSpace_pref_after_shift_operator=After shift operators (<<, >>, >>>)
FormatterModifyDialog_whiteSpace_pref_before_relational_operator=Before relational operators (<, >, <=, >=, ==, !=)
FormatterModifyDialog_whiteSpace_pref_after_relational_operator=After relational operators (<, >, <=, >=, ==, !=)
-FormatterModifyDialog_whiteSpace_pref_before_bitwise_operator=Before bitwise operator (&, ^, |)
-FormatterModifyDialog_whiteSpace_pref_after_bitwise_operator=After bitwise operator (&, ^, |)
-FormatterModifyDialog_whiteSpace_pref_before_logical_operator=Before logical operator (&&, ||)
-FormatterModifyDialog_whiteSpace_pref_after_logical_operator=After logical operator (&&, ||)
+FormatterModifyDialog_whiteSpace_pref_before_bitwise_operator=Before bitwise operator (&&, ^, |)
+FormatterModifyDialog_whiteSpace_pref_after_bitwise_operator=After bitwise operator (&&, ^, |)
+FormatterModifyDialog_whiteSpace_pref_before_logical_operator=Before logical operator (&&&&, ||)
+FormatterModifyDialog_whiteSpace_pref_after_logical_operator=After logical operator (&&&&, ||)
FormatterModifyDialog_whiteSpace_pref_before_unary_operators=Before unary operators (+x, -x, ~, !)
FormatterModifyDialog_whiteSpace_pref_after_unary_operators=After unary operators (+x, -x, ~, !)
FormatterModifyDialog_whiteSpace_pref_before_prefix_operators=Before prefix operators (++x, --x)

Back to the top