From ebb2566c95427e5c7cffd5e27f1e910b0a187b17 Mon Sep 17 00:00:00 2001 From: Andrey Loskutov Date: Mon, 9 Jan 2017 14:12:58 +0100 Subject: Bug 510100 - [cleanup] Get rid of trailing white space in platform.debug Also enabled "cleanup whitespace on save" actions for debug.ui and debug.tests bundles. Change-Id: I755b879ab1d49144a1bec3f4318dbb8b29521bb3 Signed-off-by: Andrey Loskutov --- .../StringVariablePresentationManager.java | 28 +++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/stringsubstitution/StringVariablePresentationManager.java') diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/stringsubstitution/StringVariablePresentationManager.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/stringsubstitution/StringVariablePresentationManager.java index d649557fa..cbda799de 100644 --- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/stringsubstitution/StringVariablePresentationManager.java +++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/stringsubstitution/StringVariablePresentationManager.java @@ -25,35 +25,35 @@ import com.ibm.icu.text.MessageFormat; /** * Manages argument selectors (choosers) for string variables. - * + * * @since 3.0 */ public class StringVariablePresentationManager { - + /** * String variable presentation extension point identifier * (value "stringVariablePresentations"). - * + * * @since 3.0 */ public static final String EXTENSION_POINT_STRING_VARIABLE_PRESENTATIONS = "stringVariablePresentations"; //$NON-NLS-1$ - + // default manager private static StringVariablePresentationManager fgManager; - + // extension point attributes public static final String ATTR_NAME = "variableName"; //$NON-NLS-1$ public static final String ATTR_ARGUMENT_SELECTOR = "argumentSelector"; //$NON-NLS-1$ - + /** * Table of configuration elements for variable presentations, * keyed by variable name. */ private Map fConfigurations; - + /** * Returns the singleton string variable presentation manager. - * + * * @return the singleton string variable presentation manager */ public static StringVariablePresentationManager getDefault() { @@ -62,11 +62,11 @@ public class StringVariablePresentationManager { } return fgManager; } - + /** * Returns an argument selector contributed for the given * variable, or null if none. - * + * * @param variable string substitution variable * @return argument selector or null */ @@ -81,7 +81,7 @@ public class StringVariablePresentationManager { } return null; } - + /** * Constructs the manager, loading extensions. */ @@ -90,7 +90,7 @@ public class StringVariablePresentationManager { } /** - * Load extensions + * Load extensions */ private void initialize() { fConfigurations = new HashMap(); @@ -104,8 +104,8 @@ public class StringVariablePresentationManager { continue; } fConfigurations.put(name, element); - } + } } - + } -- cgit v1.2.3