Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2018-08-17 15:47:04 +0000
committerAlexander Kurtakov2018-08-17 15:47:04 +0000
commit31e7f4ac6dd3ca668767a847a83b4d02841e2b0e (patch)
tree6cdb921be2ff7f5853dd3bd003a6d2d13f092641
parentcb272ac0c784dcd66b787d803a277db8b5a4d846 (diff)
downloadeclipse.pde.ui-I20180817-2000.tar.gz
eclipse.pde.ui-I20180817-2000.tar.xz
eclipse.pde.ui-I20180817-2000.zip
Enable more save actions for api.tools.tests.I20180817-2000
For-each, lambda, annotations and etc. Change-Id: Iaf7db07fae0b83345121b785f0b87c71603cf949 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--apitools/org.eclipse.pde.api.tools.tests/.settings/org.eclipse.jdt.core.prefs1
-rw-r--r--apitools/org.eclipse.pde.api.tools.tests/.settings/org.eclipse.jdt.ui.prefs11
2 files changed, 7 insertions, 5 deletions
diff --git a/apitools/org.eclipse.pde.api.tools.tests/.settings/org.eclipse.jdt.core.prefs b/apitools/org.eclipse.pde.api.tools.tests/.settings/org.eclipse.jdt.core.prefs
index 18539638ed..17c9f20dff 100644
--- a/apitools/org.eclipse.pde.api.tools.tests/.settings/org.eclipse.jdt.core.prefs
+++ b/apitools/org.eclipse.pde.api.tools.tests/.settings/org.eclipse.jdt.core.prefs
@@ -116,6 +116,7 @@ org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unsafeTypeOperation=warning
+org.eclipse.jdt.core.compiler.problem.unstableAutoModuleName=warning
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=warning
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
diff --git a/apitools/org.eclipse.pde.api.tools.tests/.settings/org.eclipse.jdt.ui.prefs b/apitools/org.eclipse.pde.api.tools.tests/.settings/org.eclipse.jdt.ui.prefs
index 181bddf955..b82dbaf887 100644
--- a/apitools/org.eclipse.pde.api.tools.tests/.settings/org.eclipse.jdt.ui.prefs
+++ b/apitools/org.eclipse.pde.api.tools.tests/.settings/org.eclipse.jdt.ui.prefs
@@ -57,7 +57,7 @@ formatter_profile=org.eclipse.jdt.ui.default.eclipse_profile
formatter_settings_version=12
sp_cleanup.add_default_serial_version_id=true
sp_cleanup.add_generated_serial_version_id=false
-sp_cleanup.add_missing_annotations=false
+sp_cleanup.add_missing_annotations=true
sp_cleanup.add_missing_deprecated_annotations=true
sp_cleanup.add_missing_methods=false
sp_cleanup.add_missing_nls_tags=false
@@ -68,8 +68,8 @@ sp_cleanup.always_use_blocks=true
sp_cleanup.always_use_parentheses_in_expressions=false
sp_cleanup.always_use_this_for_non_static_field_access=false
sp_cleanup.always_use_this_for_non_static_method_access=false
-sp_cleanup.convert_functional_interfaces=false
-sp_cleanup.convert_to_enhanced_for_loop=false
+sp_cleanup.convert_functional_interfaces=true
+sp_cleanup.convert_to_enhanced_for_loop=true
sp_cleanup.correct_indentation=false
sp_cleanup.format_source_code=true
sp_cleanup.format_source_code_changes_only=true
@@ -90,7 +90,8 @@ sp_cleanup.qualify_static_member_accesses_with_declaring_class=false
sp_cleanup.qualify_static_method_accesses_with_declaring_class=false
sp_cleanup.remove_private_constructors=true
sp_cleanup.remove_redundant_modifiers=false
-sp_cleanup.remove_redundant_type_arguments=false
+sp_cleanup.remove_redundant_semicolons=true
+sp_cleanup.remove_redundant_type_arguments=true
sp_cleanup.remove_trailing_whitespaces=true
sp_cleanup.remove_trailing_whitespaces_all=true
sp_cleanup.remove_trailing_whitespaces_ignore_empty=false
@@ -107,7 +108,7 @@ sp_cleanup.sort_members_all=false
sp_cleanup.use_anonymous_class_creation=false
sp_cleanup.use_blocks=true
sp_cleanup.use_blocks_only_for_return_and_throw=false
-sp_cleanup.use_lambda=false
+sp_cleanup.use_lambda=true
sp_cleanup.use_parentheses_in_expressions=false
sp_cleanup.use_this_for_non_static_field_access=false
sp_cleanup.use_this_for_non_static_field_access_only_if_necessary=true

Back to the top