Skip to content

Commit 1812ffb

Browse files
committed
Enable compiler release in e4.core.di.extensions.supplier
Fixes couple of warnings in the workspace if one doesn't have Java 17 installed anymore.
1 parent d8e06fc commit 1812ffb

File tree

1 file changed

+25
-5
lines changed

1 file changed

+25
-5
lines changed

runtime/bundles/org.eclipse.e4.core.di.extensions.supplier/.settings/org.eclipse.jdt.core.prefs

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -118,31 +118,35 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=error
118118
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
119119
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
120120
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
121-
org.eclipse.jdt.core.compiler.release=disabled
121+
org.eclipse.jdt.core.compiler.release=enabled
122122
org.eclipse.jdt.core.compiler.source=17
123123
org.eclipse.jdt.core.formatter.align_fields_grouping_blank_lines=2147483647
124124
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
125+
org.eclipse.jdt.core.formatter.alignment_for_additive_operator=16
125126
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
126127
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation=0
127128
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
128129
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call=16
129130
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation=16
130131
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression=16
131132
org.eclipse.jdt.core.formatter.alignment_for_assignment=0
132-
org.eclipse.jdt.core.formatter.alignment_for_binary_expression=16
133+
org.eclipse.jdt.core.formatter.alignment_for_bitwise_operator=16
133134
org.eclipse.jdt.core.formatter.alignment_for_compact_if=16
134135
org.eclipse.jdt.core.formatter.alignment_for_conditional_expression=80
135136
org.eclipse.jdt.core.formatter.alignment_for_enum_constants=16
136137
org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer=16
137138
org.eclipse.jdt.core.formatter.alignment_for_expressions_in_for_loop_header=0
139+
org.eclipse.jdt.core.formatter.alignment_for_logical_operator=16
138140
org.eclipse.jdt.core.formatter.alignment_for_method_declaration=0
139141
org.eclipse.jdt.core.formatter.alignment_for_module_statements=16
140142
org.eclipse.jdt.core.formatter.alignment_for_multiple_fields=16
143+
org.eclipse.jdt.core.formatter.alignment_for_multiplicative_operator=16
141144
org.eclipse.jdt.core.formatter.alignment_for_parameterized_type_references=0
142145
org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration=16
143146
org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration=16
144147
org.eclipse.jdt.core.formatter.alignment_for_resources_in_try=80
145148
org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation=16
149+
org.eclipse.jdt.core.formatter.alignment_for_string_concatenation=16
146150
org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration=16
147151
org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration=16
148152
org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration=16
@@ -234,11 +238,12 @@ org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant=insert
234238
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration=insert
235239
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body=insert
236240
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration=insert
241+
org.eclipse.jdt.core.formatter.insert_space_after_additive_operator=insert
237242
org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter=insert
238243
org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator=insert
239244
org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation=do not insert
240245
org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration=do not insert
241-
org.eclipse.jdt.core.formatter.insert_space_after_binary_operator=insert
246+
org.eclipse.jdt.core.formatter.insert_space_after_bitwise_operator=insert
242247
org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments=do not insert
243248
org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters=insert
244249
org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block=insert
@@ -269,6 +274,8 @@ org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments=insert
269274
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters=insert
270275
org.eclipse.jdt.core.formatter.insert_space_after_ellipsis=insert
271276
org.eclipse.jdt.core.formatter.insert_space_after_lambda_arrow=insert
277+
org.eclipse.jdt.core.formatter.insert_space_after_logical_operator=insert
278+
org.eclipse.jdt.core.formatter.insert_space_after_multiplicative_operator=insert
272279
org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference=do not insert
273280
org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments=do not insert
274281
org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters=do not insert
@@ -293,13 +300,17 @@ org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator=do not insert
293300
org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator=do not insert
294301
org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional=insert
295302
org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard=do not insert
303+
org.eclipse.jdt.core.formatter.insert_space_after_relational_operator=insert
296304
org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for=insert
297305
org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources=insert
306+
org.eclipse.jdt.core.formatter.insert_space_after_shift_operator=insert
307+
org.eclipse.jdt.core.formatter.insert_space_after_string_concatenation=insert
298308
org.eclipse.jdt.core.formatter.insert_space_after_unary_operator=do not insert
309+
org.eclipse.jdt.core.formatter.insert_space_before_additive_operator=insert
299310
org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter=insert
300311
org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator=insert
301312
org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration=insert
302-
org.eclipse.jdt.core.formatter.insert_space_before_binary_operator=insert
313+
org.eclipse.jdt.core.formatter.insert_space_before_bitwise_operator=insert
303314
org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference=do not insert
304315
org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments=do not insert
305316
org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters=do not insert
@@ -347,6 +358,8 @@ org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments=do no
347358
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters=do not insert
348359
org.eclipse.jdt.core.formatter.insert_space_before_ellipsis=do not insert
349360
org.eclipse.jdt.core.formatter.insert_space_before_lambda_arrow=insert
361+
org.eclipse.jdt.core.formatter.insert_space_before_logical_operator=insert
362+
org.eclipse.jdt.core.formatter.insert_space_before_multiplicative_operator=insert
350363
org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference=do not insert
351364
org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments=do not insert
352365
org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters=do not insert
@@ -383,9 +396,12 @@ org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator=do not inser
383396
org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator=do not insert
384397
org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional=insert
385398
org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard=do not insert
399+
org.eclipse.jdt.core.formatter.insert_space_before_relational_operator=insert
386400
org.eclipse.jdt.core.formatter.insert_space_before_semicolon=do not insert
387401
org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for=do not insert
388402
org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources=do not insert
403+
org.eclipse.jdt.core.formatter.insert_space_before_shift_operator=insert
404+
org.eclipse.jdt.core.formatter.insert_space_before_string_concatenation=insert
389405
org.eclipse.jdt.core.formatter.insert_space_before_unary_operator=do not insert
390406
org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference=do not insert
391407
org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer=do not insert
@@ -421,10 +437,14 @@ org.eclipse.jdt.core.formatter.tabulation.char=tab
421437
org.eclipse.jdt.core.formatter.tabulation.size=4
422438
org.eclipse.jdt.core.formatter.use_on_off_tags=false
423439
org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations=false
440+
org.eclipse.jdt.core.formatter.wrap_before_additive_operator=true
424441
org.eclipse.jdt.core.formatter.wrap_before_assignment_operator=false
425-
org.eclipse.jdt.core.formatter.wrap_before_binary_operator=true
442+
org.eclipse.jdt.core.formatter.wrap_before_bitwise_operator=true
426443
org.eclipse.jdt.core.formatter.wrap_before_conditional_operator=true
444+
org.eclipse.jdt.core.formatter.wrap_before_logical_operator=true
445+
org.eclipse.jdt.core.formatter.wrap_before_multiplicative_operator=true
427446
org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch=true
447+
org.eclipse.jdt.core.formatter.wrap_before_string_concatenation=true
428448
org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested=true
429449
org.eclipse.jdt.core.incompatibleJDKLevel=ignore
430450
org.eclipse.jdt.core.incompleteClasspath=error

0 commit comments

Comments
 (0)