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 --- .../eclipse/core/variables/VariablesPlugin.java | 28 +++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'org.eclipse.core.variables/src/org/eclipse/core/variables/VariablesPlugin.java') diff --git a/org.eclipse.core.variables/src/org/eclipse/core/variables/VariablesPlugin.java b/org.eclipse.core.variables/src/org/eclipse/core/variables/VariablesPlugin.java index 740e2afdb..e9e84ff8d 100644 --- a/org.eclipse.core.variables/src/org/eclipse/core/variables/VariablesPlugin.java +++ b/org.eclipse.core.variables/src/org/eclipse/core/variables/VariablesPlugin.java @@ -27,13 +27,13 @@ public class VariablesPlugin extends Plugin { /** * Status code indicating an unexpected internal error. */ - public static final int INTERNAL_ERROR = 120; - + public static final int INTERNAL_ERROR = 120; + /** * Status code indicating a variable reference cycle error. */ public static final int REFERENCE_CYCLE_ERROR = 130; - + /** * The single instance of this plug-in runtime class. */ @@ -46,10 +46,10 @@ public class VariablesPlugin extends Plugin { public static final String PI_CORE_VARIABLES = "org.eclipse.core.variables"; //$NON-NLS-1$ - /** + /** * Constructs an instance of this plug-in runtime class. *

- * An instance of this plug-in runtime class is automatically created + * An instance of this plug-in runtime class is automatically created * when the facilities provided by the Variables plug-in are required. * Clients must never explicitly instantiate a plug-in runtime class. *

@@ -67,16 +67,16 @@ public class VariablesPlugin extends Plugin { public static VariablesPlugin getDefault() { return plugin; } - + /** * Logs the specified throwable with this plug-in's log. - * - * @param t throwable to log + * + * @param t throwable to log */ public static void log(Throwable t) { log(new Status(IStatus.ERROR, PI_CORE_VARIABLES, INTERNAL_ERROR, "Error logged from Core Variables: ", t)); //$NON-NLS-1$ } - + /** * Logs the given message with this plug-in's log and the given * throwable or null if none. @@ -86,16 +86,16 @@ public class VariablesPlugin extends Plugin { public static void logMessage(String message, Throwable throwable) { log(new Status(IStatus.ERROR, getUniqueIdentifier(), INTERNAL_ERROR, message, throwable)); } - + /** * Logs the specified status with this plug-in's log. - * + * * @param status status to log */ public static void log(IStatus status) { getDefault().getLog().log(status); } - + /** * Convenience method which returns the unique identifier of this plug-in. * @return the identifier of this plug-in @@ -103,10 +103,10 @@ public class VariablesPlugin extends Plugin { public static String getUniqueIdentifier() { return PI_CORE_VARIABLES; } - + /** * Returns the string variable manager. - * + * * @return the string variable manager */ public IStringVariableManager getStringVariableManager() { -- cgit v1.2.3