Remove whitespace from org.eclipse.ant.launching

Change-Id: I7c751f0c3d0384a93c7a8dc44532d573bb402082
Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
diff --git a/ant/org.eclipse.ant.launching/.settings/org.eclipse.jdt.ui.prefs b/ant/org.eclipse.ant.launching/.settings/org.eclipse.jdt.ui.prefs
index fed4922..8216215 100644
--- a/ant/org.eclipse.ant.launching/.settings/org.eclipse.jdt.ui.prefs
+++ b/ant/org.eclipse.ant.launching/.settings/org.eclipse.jdt.ui.prefs
@@ -67,28 +67,39 @@
 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_to_enhanced_for_loop_if_loop_var_used=false
 sp_cleanup.correct_indentation=true
 sp_cleanup.format_source_code=true
-sp_cleanup.format_source_code_changes_only=false
+sp_cleanup.format_source_code_changes_only=true
+sp_cleanup.insert_inferred_type_arguments=false
+sp_cleanup.lazy_logical_operator=false
 sp_cleanup.make_local_variable_final=false
 sp_cleanup.make_parameters_final=false
 sp_cleanup.make_private_fields_final=true
 sp_cleanup.make_type_abstract_if_missing_method=false
 sp_cleanup.make_variable_declarations_final=false
+sp_cleanup.merge_conditional_blocks=false
 sp_cleanup.never_use_blocks=false
 sp_cleanup.never_use_parentheses_in_expressions=true
+sp_cleanup.number_suffix=false
 sp_cleanup.on_save_use_additional_actions=true
 sp_cleanup.organize_imports=true
+sp_cleanup.push_down_negation=false
 sp_cleanup.qualify_static_field_accesses_with_declaring_class=false
 sp_cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true
 sp_cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true
 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_trailing_whitespaces=false
+sp_cleanup.remove_redundant_modifiers=false
+sp_cleanup.remove_redundant_semicolons=false
+sp_cleanup.remove_redundant_type_arguments=false
+sp_cleanup.remove_trailing_whitespaces=true
 sp_cleanup.remove_trailing_whitespaces_all=true
 sp_cleanup.remove_trailing_whitespaces_ignore_empty=false
+sp_cleanup.remove_unnecessary_array_creation=false
 sp_cleanup.remove_unnecessary_casts=true
 sp_cleanup.remove_unnecessary_nls_tags=true
 sp_cleanup.remove_unused_imports=true
@@ -97,12 +108,19 @@
 sp_cleanup.remove_unused_private_members=true
 sp_cleanup.remove_unused_private_methods=true
 sp_cleanup.remove_unused_private_types=true
+sp_cleanup.simplify_lambda_expression_and_method_ref=false
 sp_cleanup.sort_members=false
 sp_cleanup.sort_members_all=false
+sp_cleanup.use_anonymous_class_creation=false
+sp_cleanup.use_autoboxing=false
 sp_cleanup.use_blocks=false
 sp_cleanup.use_blocks_only_for_return_and_throw=false
+sp_cleanup.use_directly_map_method=false
+sp_cleanup.use_lambda=false
 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
 sp_cleanup.use_this_for_non_static_method_access=false
 sp_cleanup.use_this_for_non_static_method_access_only_if_necessary=true
+sp_cleanup.use_unboxing=false
+sp_cleanup.use_var=false
diff --git a/ant/org.eclipse.ant.launching/common/org/eclipse/ant/internal/launching/debug/AntDebugState.java b/ant/org.eclipse.ant.launching/common/org/eclipse/ant/internal/launching/debug/AntDebugState.java
index 20b8395..65f1ebc 100644
--- a/ant/org.eclipse.ant.launching/common/org/eclipse/ant/internal/launching/debug/AntDebugState.java
+++ b/ant/org.eclipse.ant.launching/common/org/eclipse/ant/internal/launching/debug/AntDebugState.java
@@ -73,7 +73,7 @@
 
 	/**
 	 * Call-back from {@link org.eclipse.ant.internal.launching.runtime.logger.AntProcessDebugBuildLogger} when the build has finished
-	 * 
+	 *
 	 * @since 1.0.1
 	 */
 	public void buildFinished() {
@@ -527,7 +527,7 @@
 
 	private String escapeLineSeparator(String stringToEscape) {
 		if (!(stringToEscape.indexOf('\r') != -1 || stringToEscape.indexOf('\n') != -1 || stringToEscape.contains("\\r") //$NON-NLS-1$
-		
+
 				|| stringToEscape.contains("\\n"))) { //$NON-NLS-1$
 			return stringToEscape;
 		}
diff --git a/ant/org.eclipse.ant.launching/common/org/eclipse/ant/internal/launching/debug/IAntCoreConstants.java b/ant/org.eclipse.ant.launching/common/org/eclipse/ant/internal/launching/debug/IAntCoreConstants.java
index 2c452a9..ab32ec1 100644
--- a/ant/org.eclipse.ant.launching/common/org/eclipse/ant/internal/launching/debug/IAntCoreConstants.java
+++ b/ant/org.eclipse.ant.launching/common/org/eclipse/ant/internal/launching/debug/IAntCoreConstants.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
@@ -30,7 +30,7 @@
 
 	/**
 	 * Preferences
-	 * 
+	 *
 	 * @since 3.0
 	 */
 	public static final String PREFERENCE_ANT_HOME_ENTRIES = "ant_home_entries"; //$NON-NLS-1$
@@ -40,7 +40,7 @@
 
 	/**
 	 * Preferences
-	 * 
+	 *
 	 * @since 2.1
 	 */
 	public static final String PREFERENCE_ANT_HOME = "ant_home"; //$NON-NLS-1$
@@ -52,7 +52,7 @@
 	 * Constant representing the word 'id' <br>
 	 * <br>
 	 * Value is: <code>id</code>
-	 * 
+	 *
 	 * @since 3.2.500
 	 */
 	public static final String ID = "id"; //$NON-NLS-1$
@@ -61,7 +61,7 @@
 	 * Constant representing the word 'augment' <br>
 	 * <br>
 	 * Value is: <code>augment</code>
-	 * 
+	 *
 	 * @since 3.2.500
 	 */
 	public static final String AUGMENT = "augment"; //$NON-NLS-1$
@@ -70,7 +70,7 @@
 	 * Constant for the word 'default' <br>
 	 * <br>
 	 * Value is: <code>default</code>
-	 * 
+	 *
 	 * @since org.eclipse.ant.core 3.2.200
 	 */
 	public static final String DEFAULT = "default"; //$NON-NLS-1$
@@ -79,14 +79,14 @@
 	 * Constant for the word 'dir' <br>
 	 * <br>
 	 * Value is: <code>dir</code>
-	 * 
+	 *
 	 * @since org.eclipse.ant.core 3.2.200
 	 */
 	public static final String DIR = "dir"; //$NON-NLS-1$
 
 	/**
 	 * Constant for the empty {@link String}
-	 * 
+	 *
 	 * @since org.eclipse.ant.core 3.2.200
 	 */
 	public static final String EMPTY_STRING = ""; //$NON-NLS-1$
@@ -95,7 +95,7 @@
 	 * Constant for the word 'file' <br>
 	 * <br>
 	 * Value is: <code>file</code>
-	 * 
+	 *
 	 * @since org.eclipse.ant.core 3.2.200
 	 */
 	public static final String FILE = "file"; //$NON-NLS-1$
@@ -104,7 +104,7 @@
 	 * Constant representing a file URL protocol <br>
 	 * <br>
 	 * Value is: <code>file:</code>
-	 * 
+	 *
 	 * @since org.eclipse.ant.core 3.2.200
 	 */
 	public static final String FILE_PROTOCOL = "file:"; //$NON-NLS-1$
@@ -113,7 +113,7 @@
 	 * Constant for the word 'description' <br>
 	 * <br>
 	 * Value is: <code>description</code>
-	 * 
+	 *
 	 * @since org.eclipse.ant.core 3.2.200
 	 */
 	public static final String DESCRIPTION = "description"; //$NON-NLS-1$
@@ -122,7 +122,7 @@
 	 * Constant for the encoding <code>UTF-8</code> <br>
 	 * <br>
 	 * Value is: <code>UTF-8</code>
-	 * 
+	 *
 	 * @since org.eclipse.ant.core 3.3.0
 	 */
 	public static final String UTF_8 = "UTF-8"; //$NON-NLS-1$
@@ -131,7 +131,7 @@
 	 * The name of the XML build file extension. <br>
 	 * <br>
 	 * Value is: <code>xml</code>
-	 * 
+	 *
 	 * @since 3.8
 	 */
 	public static final String XML_EXTENSION = "xml"; //$NON-NLS-1$
@@ -140,7 +140,7 @@
 	 * The name of the target vector property used by the Eclipse executor <br>
 	 * <br>
 	 * Value is: <code>eclipse.ant.targetVector</code>
-	 * 
+	 *
 	 * @since 3.3.0
 	 */
 	public static final String TARGET_VECTOR_NAME = "eclipse.ant.targetVector"; //$NON-NLS-1$
diff --git a/ant/org.eclipse.ant.launching/common/org/eclipse/ant/internal/launching/debug/IDebugBuildLogger.java b/ant/org.eclipse.ant.launching/common/org/eclipse/ant/internal/launching/debug/IDebugBuildLogger.java
index 7fe76ee..4b264a2 100644
--- a/ant/org.eclipse.ant.launching/common/org/eclipse/ant/internal/launching/debug/IDebugBuildLogger.java
+++ b/ant/org.eclipse.ant.launching/common/org/eclipse/ant/internal/launching/debug/IDebugBuildLogger.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
diff --git a/ant/org.eclipse.ant.launching/loggers/org/eclipse/ant/internal/launching/runtime/logger/AntProcessBuildLogger.java b/ant/org.eclipse.ant.launching/loggers/org/eclipse/ant/internal/launching/runtime/logger/AntProcessBuildLogger.java
index 875ea21..357bc6b 100644
--- a/ant/org.eclipse.ant.launching/loggers/org/eclipse/ant/internal/launching/runtime/logger/AntProcessBuildLogger.java
+++ b/ant/org.eclipse.ant.launching/loggers/org/eclipse/ant/internal/launching/runtime/logger/AntProcessBuildLogger.java
@@ -83,7 +83,7 @@
 	/**
 	 * Builds a right justified task prefix for the given build event, placing it in the given string buffer. Creates the hyperlinks for the task
 	 * prefix.
-	 * 
+	 *
 	 * @param event
 	 *            build event
 	 * @param fullMessage
diff --git a/ant/org.eclipse.ant.launching/loggers/org/eclipse/ant/internal/launching/runtime/logger/AntProcessDebugBuildLogger.java b/ant/org.eclipse.ant.launching/loggers/org/eclipse/ant/internal/launching/runtime/logger/AntProcessDebugBuildLogger.java
index a7a732c..5860a6c 100644
--- a/ant/org.eclipse.ant.launching/loggers/org/eclipse/ant/internal/launching/runtime/logger/AntProcessDebugBuildLogger.java
+++ b/ant/org.eclipse.ant.launching/loggers/org/eclipse/ant/internal/launching/runtime/logger/AntProcessDebugBuildLogger.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
@@ -66,7 +66,7 @@
 	 * Cleans up all held memory. <br>
 	 * <br>
 	 * Called from {@link #buildFinished(BuildEvent)} and {@link #terminate()}
-	 * 
+	 *
 	 * @since 1.0.1
 	 */
 	void cleanup() {
diff --git a/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/AntSecurityException.java b/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/AntSecurityException.java
index 220f599..2f1baeb 100644
--- a/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/AntSecurityException.java
+++ b/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/AntSecurityException.java
@@ -15,7 +15,7 @@
 
 /**
  * A security exception that is thrown by the AntSecurityManager if an Ant task in some way attempts to halt or exit the Java Virtual Machine.
- * 
+ *
  * @since 2.1
  */
 public class AntSecurityException extends SecurityException {
diff --git a/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/IAntCoreConstants.java b/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/IAntCoreConstants.java
index 3f14195..4615454 100644
--- a/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/IAntCoreConstants.java
+++ b/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/IAntCoreConstants.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
@@ -30,7 +30,7 @@
 
 	/**
 	 * Preferences
-	 * 
+	 *
 	 * @since 3.0
 	 */
 	public static final String PREFERENCE_ANT_HOME_ENTRIES = "ant_home_entries"; //$NON-NLS-1$
@@ -40,7 +40,7 @@
 
 	/**
 	 * Preferences
-	 * 
+	 *
 	 * @since 2.1
 	 */
 	public static final String PREFERENCE_ANT_HOME = "ant_home"; //$NON-NLS-1$
@@ -52,7 +52,7 @@
 	 * Constant representing the word 'id' <br>
 	 * <br>
 	 * Value is: <code>id</code>
-	 * 
+	 *
 	 * @since 3.2.500
 	 */
 	public static final String ID = "id"; //$NON-NLS-1$
@@ -61,7 +61,7 @@
 	 * Constant representing the word 'augment' <br>
 	 * <br>
 	 * Value is: <code>augment</code>
-	 * 
+	 *
 	 * @since 3.2.500
 	 */
 	public static final String AUGMENT = "augment"; //$NON-NLS-1$
@@ -70,7 +70,7 @@
 	 * Constant for the word 'default' <br>
 	 * <br>
 	 * Value is: <code>default</code>
-	 * 
+	 *
 	 * @since org.eclipse.ant.core 3.2.200
 	 */
 	public static final String DEFAULT = "default"; //$NON-NLS-1$
@@ -79,14 +79,14 @@
 	 * Constant for the word 'dir' <br>
 	 * <br>
 	 * Value is: <code>dir</code>
-	 * 
+	 *
 	 * @since org.eclipse.ant.core 3.2.200
 	 */
 	public static final String DIR = "dir"; //$NON-NLS-1$
 
 	/**
 	 * Constant for the empty {@link String}
-	 * 
+	 *
 	 * @since org.eclipse.ant.core 3.2.200
 	 */
 	public static final String EMPTY_STRING = ""; //$NON-NLS-1$
@@ -95,7 +95,7 @@
 	 * Constant for the word 'file' <br>
 	 * <br>
 	 * Value is: <code>file</code>
-	 * 
+	 *
 	 * @since org.eclipse.ant.core 3.2.200
 	 */
 	public static final String FILE = "file"; //$NON-NLS-1$
@@ -104,7 +104,7 @@
 	 * Constant representing a file URL protocol <br>
 	 * <br>
 	 * Value is: <code>file:</code>
-	 * 
+	 *
 	 * @since org.eclipse.ant.core 3.2.200
 	 */
 	public static final String FILE_PROTOCOL = "file:"; //$NON-NLS-1$
@@ -113,7 +113,7 @@
 	 * Constant for the word 'description' <br>
 	 * <br>
 	 * Value is: <code>description</code>
-	 * 
+	 *
 	 * @since org.eclipse.ant.core 3.2.200
 	 */
 	public static final String DESCRIPTION = "description"; //$NON-NLS-1$
@@ -122,7 +122,7 @@
 	 * Constant for the encoding <code>UTF-8</code> <br>
 	 * <br>
 	 * Value is: <code>UTF-8</code>
-	 * 
+	 *
 	 * @since org.eclipse.ant.core 3.3.0
 	 */
 	public static final String UTF_8 = "UTF-8"; //$NON-NLS-1$
@@ -131,7 +131,7 @@
 	 * The name of the XML build file extension. <br>
 	 * <br>
 	 * Value is: <code>xml</code>
-	 * 
+	 *
 	 * @since 3.8
 	 */
 	public static final String XML_EXTENSION = "xml"; //$NON-NLS-1$
@@ -140,7 +140,7 @@
 	 * The name of the target vector property used by the Eclipse executor <br>
 	 * <br>
 	 * Value is: <code>eclipse.ant.targetVector</code>
-	 * 
+	 *
 	 * @since 3.3.0
 	 */
 	public static final String TARGET_VECTOR_NAME = "eclipse.ant.targetVector"; //$NON-NLS-1$
diff --git a/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/InternalAntRunner.java b/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/InternalAntRunner.java
index 4e8e3cd..c9f075e 100644
--- a/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/InternalAntRunner.java
+++ b/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/InternalAntRunner.java
@@ -2,11 +2,11 @@
  * Copyright (c) 2000, 2019 IBM Corporation and others.
  * Portions Copyright  2000-2005 The Apache Software Foundation
  *
- * This program and the accompanying materials are made 
- * available under the terms of the Apache Software License v2.0 which 
- * accompanies this distribution and is available at 
+ * This program and the accompanying materials are made
+ * available under the terms of the Apache Software License v2.0 which
+ * accompanies this distribution and is available at
  * http://www.apache.org/licenses/LICENSE-2.0.
- * 
+ *
  * Contributors:
  *     IBM Corporation - derived implementation
  *     Rob Stryker - Bug 459188 - InternalAntRunner tries to set null user property
@@ -124,14 +124,14 @@
 
 	/**
 	 * Indicates whether to execute all targets that do not depend on failed targets
-	 * 
+	 *
 	 * @since Ant 1.6.0
 	 */
 	private boolean keepGoing = false;
 
 	/**
 	 * Indicates whether this build is to support interactive input
-	 * 
+	 *
 	 * @since Ant 1.6.0
 	 */
 	private boolean allowInput = true;
@@ -198,7 +198,7 @@
 
 	/**
 	 * Parses the build file and adds necessary information into the given project.
-	 * 
+	 *
 	 * @param project
 	 *            The project to configure
 	 */
@@ -244,7 +244,7 @@
 
 	/**
 	 * Logs a message with the client that lists the targets in a project
-	 * 
+	 *
 	 * @param project
 	 *            the project to list targets from
 	 */
@@ -306,7 +306,7 @@
 
 	/**
 	 * Logs a message with the client that lists the target names and optional descriptions
-	 * 
+	 *
 	 * @param project
 	 *            the enclosing target
 	 * @param names
@@ -557,7 +557,7 @@
 
 	/**
 	 * Creates and returns the default build logger for logging build events to the ant log.
-	 * 
+	 *
 	 * @return the default build logger for logging build events to the ant log can return <code>null</code> if no logging is to occur
 	 */
 	private BuildLogger createLogger() {
@@ -633,7 +633,7 @@
 
 	/**
 	 * Sets the buildFileLocation.
-	 * 
+	 *
 	 * @param buildFileLocation
 	 *            the file system location of the build file
 	 */
@@ -653,7 +653,7 @@
 
 	/**
 	 * Sets the message output level. Use -1 for none.
-	 * 
+	 *
 	 * @param level
 	 *            The message output level
 	 */
@@ -1244,7 +1244,7 @@
 
 	/*
 	 * From a command line list, return the argument for the given parameter. The parameter and its argument are removed from the list.
-	 * 
+	 *
 	 * @return <code>null</code> if the parameter is not found or an empty String if no arguments are found
 	 */
 	private String getArgument(List<String> commands, String param) {
@@ -1310,7 +1310,7 @@
 
 	/*
 	 * Creates the InputHandler and adds it to the project.
-	 * 
+	 *
 	 * @exception BuildException if a specified InputHandler implementation could not be loaded.
 	 */
 	private void addInputHandler(Project project) {
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/AntCoreModelMessages.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/AntCoreModelMessages.java
index 9a2350a..9a00d29 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/AntCoreModelMessages.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/AntCoreModelMessages.java
@@ -6,8 +6,8 @@
 t https://www.eclipse.org/legal/epl-2.0/
 t
 t SPDX-License-Identifier: EPL-2.0
- * 
- * Contributors: 
+ *
+ * Contributors:
  * IBM - Initial API and implementation
  **********************************************************************/
 package org.eclipse.ant.internal.launching;
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/AntLaunching.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/AntLaunching.java
index c6c380b..221a3fc 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/AntLaunching.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/AntLaunching.java
@@ -43,7 +43,7 @@
 
 	/**
 	 * Size of left-hand column for right-justified task name. Used for Ant Build logging.
-	 * 
+	 *
 	 * @see org.eclipse.ant.internal.ui.antsupport.logger.AntProcessBuildLogger
 	 * @see org.eclipse.ant.internal.launching.launchConfigurations.RemoteAntBuildListener
 	 */
@@ -52,7 +52,7 @@
 	/**
 	 * String attribute indicating the custom runtime classpath to use for an Ant build. Default value is <code>null</code> which indicates that the
 	 * global classpath is to be used. Format is a comma separated listing of URLs.
-	 * 
+	 *
 	 * @deprecated no longer supported: use {@link IJavaLaunchConfigurationConstants#ATTR_CLASSPATH_PROVIDER}
 	 * @see IJavaLaunchConfigurationConstants#ATTR_DEFAULT_CLASSPATH
 	 */
@@ -61,7 +61,7 @@
 	/**
 	 * String attribute indicating the custom Ant home to use for an Ant build. Default value is <code>null</code> which indicates that no Ant home is
 	 * to be set
-	 * 
+	 *
 	 * @deprecated no longer supported: use {@link IJavaLaunchConfigurationConstants#ATTR_CLASSPATH_PROVIDER}
 	 * @see IJavaLaunchConfigurationConstants#ATTR_DEFAULT_CLASSPATH
 	 */
@@ -70,7 +70,7 @@
 
 	/**
 	 * Status code indicating an unexpected internal error.
-	 * 
+	 *
 	 * @since 2.1
 	 */
 	public static final int INTERNAL_ERROR = 120;
@@ -98,7 +98,7 @@
 
 	/**
 	 * Returns the shared instance
-	 * 
+	 *
 	 * @return the shared instance
 	 */
 	public static AntLaunching getDefault() {
@@ -111,7 +111,7 @@
 
 	/**
 	 * Logs the specified throwable with this plug-in's log.
-	 * 
+	 *
 	 * @param t
 	 *            throwable to log
 	 */
@@ -122,7 +122,7 @@
 
 	/**
 	 * Logs the specified status with this plug-in's log.
-	 * 
+	 *
 	 * @param status
 	 *            status
 	 */
@@ -132,7 +132,7 @@
 
 	/**
 	 * Writes the message to the plug-in's log
-	 * 
+	 *
 	 * @param message
 	 *            the text to write to the log
 	 */
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/AntLaunchingPreferenceInitializer.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/AntLaunchingPreferenceInitializer.java
index 75c41ad..32bc622 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/AntLaunchingPreferenceInitializer.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/AntLaunchingPreferenceInitializer.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/AntLaunchingUtil.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/AntLaunchingUtil.java
index 62cd6e5..33d2d76 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/AntLaunchingUtil.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/AntLaunchingUtil.java
@@ -68,7 +68,7 @@
 
 	/**
 	 * Returns a single-string of the strings for storage.
-	 * 
+	 *
 	 * @param strings
 	 *            the array of strings
 	 * @return a single-string representation of the strings or <code>null</code> if the array is empty.
@@ -92,7 +92,7 @@
 	/**
 	 * Returns an array of targets to be run, or <code>null</code> if none are specified (indicating the default target or implicit target should be
 	 * run).
-	 * 
+	 *
 	 * @param configuration
 	 *            launch configuration
 	 * @return array of target names, or <code>null</code>
@@ -133,7 +133,7 @@
 	/**
 	 * Returns a map of properties to be defined for the build, or <code>null</code> if none are specified (indicating no additional properties
 	 * specified for the build).
-	 * 
+	 *
 	 * @param configuration
 	 *            launch configuration
 	 * @return map of properties (name --&gt; value), or <code>null</code>
@@ -148,7 +148,7 @@
 
 	/**
 	 * Returns a String specifying the Ant home to use for the build.
-	 * 
+	 *
 	 * @param configuration
 	 *            launch configuration
 	 * @return String specifying Ant home to use or <code>null</code>
@@ -171,7 +171,7 @@
 	/**
 	 * Returns an array of property files to be used for the build, or <code>null</code> if none are specified (indicating no additional property
 	 * files specified for the build).
-	 * 
+	 *
 	 * @param configuration
 	 *            launch configuration
 	 * @return array of property file names, or <code>null</code>
@@ -194,11 +194,11 @@
 
 	/**
 	 * Returns the list of URLs that define the custom classpath for the Ant build, or <code>null</code> if the global classpath is to be used.
-	 * 
+	 *
 	 * @param config
 	 *            launch configuration
 	 * @return a list of <code>URL</code>
-	 * 
+	 *
 	 * @throws CoreException
 	 *             if file does not exist, IO problems, or invalid format.
 	 */
@@ -240,7 +240,7 @@
 
 	/**
 	 * Returns the list of target names to run
-	 * 
+	 *
 	 * @param extraAttibuteValue
 	 *            the external tool's extra attribute value for the run targets key.
 	 * @return a list of target names
@@ -251,7 +251,7 @@
 
 	/**
 	 * Returns the list of Strings that were delimiter separated.
-	 * 
+	 *
 	 * @param delimString
 	 *            the String to be tokenized based on the delimiter
 	 * @return a list of Strings
@@ -283,9 +283,9 @@
 	/**
 	 * Returns the workspace file associated with the given path in the local file system, or <code>null</code> if none. If the path happens to be a
 	 * relative path, then the path is interpreted as relative to the specified parent file.
-	 * 
+	 *
 	 * Attempts to handle linked files; the first found linked file with the correct path is returned.
-	 * 
+	 *
 	 * @param path
 	 * @param buildFileParent
 	 * @return file or <code>null</code>
@@ -339,7 +339,7 @@
 	/**
 	 * Migrates the classpath in the given configuration from the old format to the new format. The old format is not preserved. Instead, the default
 	 * classpath will be used. However, ANT_HOME settings are preserved.
-	 * 
+	 *
 	 * @param configuration
 	 *            a configuration to migrate
 	 * @throws CoreException
@@ -446,7 +446,7 @@
 	/**
 	 * Returns whether the given configuration should be launched in the background. When unspecified, the default value for an Ant launch
 	 * configuration is <code>true</code>.
-	 * 
+	 *
 	 * @param configuration
 	 *            the configuration
 	 * @return whether the configuration is configured to launch in the background
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/IAntLaunchingPreferenceConstants.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/IAntLaunchingPreferenceConstants.java
index 7133af9..51f78de 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/IAntLaunchingPreferenceConstants.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/IAntLaunchingPreferenceConstants.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntDebugMessages.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntDebugMessages.java
index ecd928a..5301128 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntDebugMessages.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntDebugMessages.java
@@ -6,8 +6,8 @@
 t https://www.eclipse.org/legal/epl-2.0/
 t
 t SPDX-License-Identifier: EPL-2.0
- * 
- * Contributors: 
+ *
+ * Contributors:
  * IBM - Initial API and implementation
  **********************************************************************/
 package org.eclipse.ant.internal.launching.debug;
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntSourceContainer.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntSourceContainer.java
index 2bda243..616c004 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntSourceContainer.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntSourceContainer.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntSourceLookupDirector.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntSourceLookupDirector.java
index f5bd36c..6cd9490 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntSourceLookupDirector.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntSourceLookupDirector.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntSourceLookupParticipant.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntSourceLookupParticipant.java
index 89459a3..9208301 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntSourceLookupParticipant.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntSourceLookupParticipant.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntSourcePathComputerDelegate.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntSourcePathComputerDelegate.java
index 026b7dc..144f404 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntSourcePathComputerDelegate.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/AntSourcePathComputerDelegate.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/IAntDebugConstants.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/IAntDebugConstants.java
index 07d41c5..440a51e 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/IAntDebugConstants.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/IAntDebugConstants.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/IAntDebugController.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/IAntDebugController.java
index a72454a..39da0dc 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/IAntDebugController.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/IAntDebugController.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
@@ -39,14 +39,14 @@
 
 	/**
 	 * The debugging session has terminated
-	 * 
+	 *
 	 * @since 1.0.1
 	 */
 	public void terminate();
 
 	/**
 	 * The provided breakpoint has been added or removed depending on the <code>added</code> parameter. Updates the controller for this change.
-	 * 
+	 *
 	 * @param breakpoint
 	 *            the breakpoint that has been added or removed
 	 * @param added
@@ -66,7 +66,7 @@
 
 	/**
 	 * Some strings are escaped when marshalled for socket communication. The Ant debug controller will properly unescape these Strings if required.
-	 * 
+	 *
 	 * @param value
 	 *            The buffer of the string to unescape
 	 * @return The unescaped string
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntDebugElement.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntDebugElement.java
index d261467..fda759d 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntDebugElement.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntDebugElement.java
@@ -27,7 +27,7 @@
 
 	/**
 	 * Constructs a new debug element contained in the given debug target.
-	 * 
+	 *
 	 * @param target
 	 *            debug target
 	 */
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntDebugTarget.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntDebugTarget.java
index 3173524..8f3b605 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntDebugTarget.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntDebugTarget.java
@@ -67,7 +67,7 @@
 
 	/**
 	 * Constructs a new debug target in the given launch for the associated Ant build process.
-	 * 
+	 *
 	 * @param launch
 	 *            containing launch
 	 * @param process
@@ -181,7 +181,7 @@
 
 	/**
 	 * Notification the target has suspended for the given reason
-	 * 
+	 *
 	 * @param detail
 	 *            reason for the suspend
 	 */
@@ -346,7 +346,7 @@
 
 	/**
 	 * Notification a breakpoint was encountered. Determine which breakpoint was hit and fire a suspend event.
-	 * 
+	 *
 	 * @param event
 	 *            debug event
 	 */
@@ -417,7 +417,7 @@
 
 	/**
 	 * When the breakpoint manager disables, remove all registered breakpoints requests from the VM. When it enables, reinstall them.
-	 * 
+	 *
 	 * @see org.eclipse.debug.core.IBreakpointManagerListener#breakpointManagerEnablementChanged(boolean)
 	 */
 	@Override
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntLineBreakpoint.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntLineBreakpoint.java
index 4314f33..dbbc80c 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntLineBreakpoint.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntLineBreakpoint.java
@@ -42,7 +42,7 @@
 	/**
 	 * Constructs a line breakpoint on the given resource at the given line number. The line number is 1-based (i.e. the first line of a file is line
 	 * number 1).
-	 * 
+	 *
 	 * @param resource
 	 *            file on which to set the breakpoint
 	 * @param lineNumber
@@ -57,7 +57,7 @@
 	/**
 	 * Constructs a line breakpoint on the given resource at the given line number. The line number is 1-based (i.e. the first line of a file is line
 	 * number 1).
-	 * 
+	 *
 	 * @param resource
 	 *            file on which to set the breakpoint
 	 * @param lineNumber
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntProperties.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntProperties.java
index fb52fea..c0696d9 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntProperties.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntProperties.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntPropertiesValue.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntPropertiesValue.java
index 5877e21..22b31c9 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntPropertiesValue.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntPropertiesValue.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *     Brock Janiczak (brockj@tpg.com.au) - bug 154907
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntProperty.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntProperty.java
index 8760443..ea93286 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntProperty.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntProperty.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *     Brock Janiczak (brockj@tpg.com.au) - bug 154907
@@ -28,7 +28,7 @@
 
 	/**
 	 * Constructs a variable associated with the debug target with the given name and value.
-	 * 
+	 *
 	 * @param target
 	 *            the debug target
 	 * @param name
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntStackFrame.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntStackFrame.java
index 54f8b78..6da7b1e 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntStackFrame.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntStackFrame.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
@@ -36,7 +36,7 @@
 
 	/**
 	 * Constructs a stack frame in the given thread with the given id.
-	 * 
+	 *
 	 * @param antThread
 	 * @param id
 	 *            stack frame id (0 is the top of the stack)
@@ -198,7 +198,7 @@
 
 	/**
 	 * Returns the name of the buildfile this stack frame is associated with.
-	 * 
+	 *
 	 * @return the name of the buildfile this stack frame is associated with
 	 */
 	public String getSourceName() {
@@ -227,7 +227,7 @@
 
 	/**
 	 * Returns this stack frame's unique identifier within its thread
-	 * 
+	 *
 	 * @return this stack frame's unique identifier within its thread
 	 */
 	protected int getIdentifier() {
@@ -236,7 +236,7 @@
 
 	/**
 	 * Returns the system, user or runtime property name, or <code>null</code> if unable to resolve a property with the name.
-	 * 
+	 *
 	 * @param propertyName
 	 *            the name of the variable to search for
 	 * @return a property, or <code>null</code> if none
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntThread.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntThread.java
index e2d2cb4..c07427e 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntThread.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntThread.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
@@ -71,7 +71,7 @@
 
 	/**
 	 * Constructs a new thread for the given target
-	 * 
+	 *
 	 * @param target
 	 *            the Ant Build
 	 */
@@ -92,7 +92,7 @@
 
 	/**
 	 * Retrieves the current stack frames in the thread possibly waiting until the frames are populated
-	 * 
+	 *
 	 */
 	private void getStackFrames0() throws DebugException {
 		synchronized (fFrames) {
@@ -155,7 +155,7 @@
 
 	/**
 	 * Sets the breakpoints this thread is suspended at, or <code>null</code> if none.
-	 * 
+	 *
 	 * @param breakpoints
 	 *            the breakpoints this thread is suspended at, or <code>null</code> if none
 	 */
@@ -186,7 +186,7 @@
 
 	/**
 	 * Call-back when the target is resumed
-	 * 
+	 *
 	 * @since 1.0
 	 */
 	void resumedByTarget() {
@@ -271,7 +271,7 @@
 
 	/**
 	 * Sets whether this thread is stepping
-	 * 
+	 *
 	 * @param stepping
 	 *            whether stepping
 	 */
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntValue.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntValue.java
index 126ddc7..45f7e85 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntValue.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/AntValue.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/DebugMessageIds.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/DebugMessageIds.java
index 7ca1452..79f0306 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/DebugMessageIds.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/DebugMessageIds.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/DebugModelMessages.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/DebugModelMessages.java
index c2f8eed..bf7d44a 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/DebugModelMessages.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/DebugModelMessages.java
@@ -6,8 +6,8 @@
 t https://www.eclipse.org/legal/epl-2.0/
 t
 t SPDX-License-Identifier: EPL-2.0
- * 
- * Contributors: 
+ *
+ * Contributors:
  * IBM - Initial API and implementation
  **********************************************************************/
 package org.eclipse.ant.internal.launching.debug.model;
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/RemoteAntDebugBuildListener.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/RemoteAntDebugBuildListener.java
index e72e4f4..6e2a991 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/RemoteAntDebugBuildListener.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/debug/model/RemoteAntDebugBuildListener.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
@@ -78,7 +78,7 @@
 
 	/**
 	 * Constructor
-	 * 
+	 *
 	 * @param launch
 	 *            the backing launch to listen to
 	 * @param encoding
@@ -179,7 +179,7 @@
 
 	/**
 	 * Start listening to an Ant build. Start a server connection that the RemoteAntDebugBuildLogger can connect to.
-	 * 
+	 *
 	 * @param eventPort
 	 *            The port number to create the server connection on
 	 * @param requestPort
@@ -192,7 +192,7 @@
 
 	/**
 	 * Sends a request to the Ant build
-	 * 
+	 *
 	 * @param request
 	 *            debug command
 	 */
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntClasspathProvider.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntClasspathProvider.java
index d17d0e9..42ceb2d 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntClasspathProvider.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntClasspathProvider.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntHomeClasspathEntry.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntHomeClasspathEntry.java
index a2fe679..109acb6 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntHomeClasspathEntry.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntHomeClasspathEntry.java
@@ -36,7 +36,7 @@
 
 /**
  * A classpath entry that contains a set of archives for a particular ANT_HOME.
- * 
+ *
  * @since 3.0
  */
 @SuppressWarnings("restriction")
@@ -58,7 +58,7 @@
 
 	/**
 	 * Constructs an AntHome entry for the Ant installed at the specified root directory.
-	 * 
+	 *
 	 * @param antHome
 	 *            path in the local file system to an Ant installation
 	 */
@@ -159,7 +159,7 @@
 
 	/**
 	 * Return whether s1 is equivalent to s2.
-	 * 
+	 *
 	 * @param s1
 	 * @param s2
 	 * @return whether s1 is equivalent to s2
@@ -178,7 +178,7 @@
 
 	/**
 	 * Sets the ant home to use.
-	 * 
+	 *
 	 * @param path
 	 *            path to toor of an ant home installation
 	 */
@@ -188,7 +188,7 @@
 
 	/**
 	 * Returns the ant home location
-	 * 
+	 *
 	 * @return path to root ant installation directory
 	 */
 	public String getAntHome() {
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntJavaLaunchDelegate.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntJavaLaunchDelegate.java
index c4f650e..9e27446 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntJavaLaunchDelegate.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntJavaLaunchDelegate.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntLaunchConfigurationMessages.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntLaunchConfigurationMessages.java
index b8925d7..bc6a598 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntLaunchConfigurationMessages.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntLaunchConfigurationMessages.java
@@ -6,8 +6,8 @@
 t https://www.eclipse.org/legal/epl-2.0/
 t
 t SPDX-License-Identifier: EPL-2.0
- * 
- * Contributors: 
+ *
+ * Contributors:
  * IBM - Initial API and implementation
  * dakshinamurthy.karra@gmail.com - bug 165371
  **********************************************************************/
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntLaunchDelegate.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntLaunchDelegate.java
index 51a40a6..491e077 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntLaunchDelegate.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntLaunchDelegate.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *     Juan A. Hernandez - bug 89926
@@ -95,7 +95,7 @@
 
 	/**
 	 * String attribute identifying the build scope for a launch configuration. <code>null</code> indicates the default workspace build.
-	 * 
+	 *
 	 * Note: this attribute was used with the old 'AntBuildTab' which has been replaced by the 'ExternalToolsBuildTab'. The 'ExternalToolsBuildTab'
 	 * uses a different attribute key, so use the external tools attribute when present: IExternalToolConstants.ATTR_BUILD_SCOPE
 	 */
@@ -104,7 +104,7 @@
 	/**
 	 * Attribute identifier specifying whether referenced projects should be considered when computing the projects to build. Default value is
 	 * <code>true</code>.
-	 * 
+	 *
 	 * Note: this attribute was used with the old 'AntBuildTab' which has been replaced by the 'ExternalToolsBuildTab'. The 'ExternalToolsBuildTab'
 	 * uses a different attribute key, so use the external tools attribute when present: IExternalToolConstants.ATTR_INCLUDE_REFERENCED_PROJECTS
 	 */
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntMigrationDelegate.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntMigrationDelegate.java
index fc75932..e9f3478 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntMigrationDelegate.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntMigrationDelegate.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
@@ -27,14 +27,14 @@
 /**
  * Delegate for migrating Ant launch configurations. The migration process involves a resource mapping being created such that launch configurations
  * can be filtered from the launch configuration dialog based on resource availability.
- * 
+ *
  * @since 3.2
  */
 public class AntMigrationDelegate implements ILaunchConfigurationMigrationDelegate {
 
 	/**
 	 * Method to get the file for the specified launch configuration that should be mapped to the launch configuration
-	 * 
+	 *
 	 * @param candidate
 	 *            the launch configuration that the file will be mapped to.
 	 * @return the buildfile or <code>null</code> if not in the workspace
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntProcess.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntProcess.java
index 13878e8..3092faa 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntProcess.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntProcess.java
@@ -163,7 +163,7 @@
 
 	/**
 	 * Sets a progress monitor to delegate to or <code>null</code> if none.
-	 * 
+	 *
 	 * @param monitor
 	 *            delegate monitor or <code>null</code>
 	 */
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntStreamMonitor.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntStreamMonitor.java
index ac47b47..cc74443 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntStreamMonitor.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntStreamMonitor.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
@@ -43,7 +43,7 @@
 
 	/**
 	 * Appends the given message to this stream, and notifies listeners.
-	 * 
+	 *
 	 * @param message
 	 */
 	public void append(String message) {
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntStreamsProxy.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntStreamsProxy.java
index 77bb5a6..b9c15b9 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntStreamsProxy.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntStreamsProxy.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
@@ -18,7 +18,7 @@
 import org.eclipse.debug.core.model.IStreamsProxy;
 
 /**
- * 
+ *
  */
 public class AntStreamsProxy implements IStreamsProxy {
 
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/ContributedClasspathEntriesEntry.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/ContributedClasspathEntriesEntry.java
index 1ddb2ad..5164b49 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/ContributedClasspathEntriesEntry.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/ContributedClasspathEntriesEntry.java
@@ -51,7 +51,7 @@
 
 /**
  * A classpath entry that contains a contributed classpath entries via the <code>extraClasspathEntries</code> extension point.
- * 
+ *
  * @since 3.0
  */
 @SuppressWarnings("restriction")
@@ -219,7 +219,7 @@
 
 	/**
 	 * Returns the tools.jar to use for this launch configuration, or <code>null</code> if none.
-	 * 
+	 *
 	 * @param configuration
 	 *            configuration to resolve a tools.jar for
 	 * @return associated tools.jar archive, or <code>null</code>
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/MessageIds.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/MessageIds.java
index 35b5e02..3233d52 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/MessageIds.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/MessageIds.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/RemoteAntBuildListener.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/RemoteAntBuildListener.java
index 275de0e..60fbdeb 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/RemoteAntBuildListener.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/RemoteAntBuildListener.java
@@ -7,7 +7,7 @@
  *  https://www.eclipse.org/legal/epl-2.0/
  *
  *  SPDX-License-Identifier: EPL-2.0
- * 
+ *
  *  Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
@@ -65,7 +65,7 @@
 	private boolean fBuildFailed = false;
 	/**
 	 * The encoding to use
-	 * 
+	 *
 	 * @since 3.7
 	 */
 	private String fEncoding;
@@ -112,7 +112,7 @@
 
 	/**
 	 * Constructor
-	 * 
+	 *
 	 * @param launch
 	 *            the backing launch to listen to
 	 * @param encoding
@@ -127,7 +127,7 @@
 
 	/**
 	 * Returns the encoding set on the listener
-	 * 
+	 *
 	 * @return the encoding set on the listener
 	 * @since 3.7
 	 */
@@ -137,7 +137,7 @@
 
 	/**
 	 * Start listening to an Ant build. Start a server connection that the RemoteAntBuildLogger can connect to.
-	 * 
+	 *
 	 * @param eventPort
 	 *            The port number to create the server connection on
 	 */
@@ -329,7 +329,7 @@
 
 	/**
 	 * Builds a right justified task prefix for the given build event, placing it in the given string buffer.
-	 * 
+	 *
 	 * @param taskName
 	 *            the name of the task, can be <code>null</code>
 	 * @param line
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/RemoteAntProcessFactory.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/RemoteAntProcessFactory.java
index 309809a..6490396 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/RemoteAntProcessFactory.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/RemoteAntProcessFactory.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/RemoteAntRuntimeProcess.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/RemoteAntRuntimeProcess.java
index 1c8b6c8..b84d0ae 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/RemoteAntRuntimeProcess.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/RemoteAntRuntimeProcess.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
diff --git a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/launching/IAntLaunchConstants.java b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/launching/IAntLaunchConstants.java
index cc9253c..34cf300 100644
--- a/ant/org.eclipse.ant.launching/src/org/eclipse/ant/launching/IAntLaunchConstants.java
+++ b/ant/org.eclipse.ant.launching/src/org/eclipse/ant/launching/IAntLaunchConstants.java
@@ -7,7 +7,7 @@
  * https://www.eclipse.org/legal/epl-2.0/
  *
  * SPDX-License-Identifier: EPL-2.0
- * 
+ *
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
@@ -18,7 +18,7 @@
 
 /**
  * Constant definitions for Ant launch configurations.
- * 
+ *
  * @since 1.0
  * @noimplement This interface is not intended to be implemented by clients.
  */
@@ -75,7 +75,7 @@
 	 * Map attribute indicating the Ant properties to be defined during the build. Default value is <code>null</code> which indicates no additional
 	 * properties will be defined.
 	 */
-	public static final String ATTR_ANT_PROPERTIES = IExternalToolConstants.UI_PLUGIN_ID + ".ATTR_ANT_PROPERTIES"; //$NON-NLS-1$					
+	public static final String ATTR_ANT_PROPERTIES = IExternalToolConstants.UI_PLUGIN_ID + ".ATTR_ANT_PROPERTIES"; //$NON-NLS-1$
 
 	/**
 	 * String attribute indicating the Ant targets to execute. Default value is <code>null</code> which indicates that no additional property files