Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2019-11-14 18:01:51 +0000
committerLars Vogel2019-11-14 18:48:19 +0000
commitcd94877fcf27071a7aa5bc739e24c00ee2d835f8 (patch)
treee57ab5cc503421518c1097038f85e2e5fda87eda
parente674bd0d8fdaa5292a2d6de3058aa2e15f9a0154 (diff)
downloadeclipse.platform.debug-cd94877fcf27071a7aa5bc739e24c00ee2d835f8.tar.gz
eclipse.platform.debug-cd94877fcf27071a7aa5bc739e24c00ee2d835f8.tar.xz
eclipse.platform.debug-cd94877fcf27071a7aa5bc739e24c00ee2d835f8.zip
Unnecessary whitespace removal
Change-Id: I16039f99f6aaf7781b5be60694589f353c6e3f05 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--org.eclipse.core.variables/src/org/eclipse/core/variables/IDynamicVariable.java4
-rw-r--r--org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariable.java4
2 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.core.variables/src/org/eclipse/core/variables/IDynamicVariable.java b/org.eclipse.core.variables/src/org/eclipse/core/variables/IDynamicVariable.java
index 80efe9b58..29521906b 100644
--- a/org.eclipse.core.variables/src/org/eclipse/core/variables/IDynamicVariable.java
+++ b/org.eclipse.core.variables/src/org/eclipse/core/variables/IDynamicVariable.java
@@ -23,7 +23,7 @@ import org.eclipse.core.runtime.CoreException;
* The following is a definition of a dynamic variable that resolves to the name
* of the selected resource:
* </p>
- *
+ *
* <pre>
* &lt;extension point="org.eclipse.core.variables.dynamicVariables"&gt;
* &lt;variable
@@ -38,7 +38,7 @@ import org.eclipse.core.runtime.CoreException;
* Clients contributing a dynamic variable provide an implementation of
* {@link org.eclipse.core.variables.IDynamicVariableResolver}.
* </p>
- *
+ *
* @since 3.0
* @noimplement This interface is not intended to be implemented by clients.
*/
diff --git a/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariable.java b/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariable.java
index 72d52fdfa..ab37139de 100644
--- a/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariable.java
+++ b/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariable.java
@@ -18,7 +18,7 @@ package org.eclipse.core.variables;
* A variable that can be referenced in an expression, which resolves to a
* string value. Variables are referenced in expressions via their name, in the
* following format.
- *
+ *
* <pre>
* ${varname} or ${varname:argument}
* </pre>
@@ -39,7 +39,7 @@ package org.eclipse.core.variables;
* time a string substitution is performed by a contributed resolver. Dynamic
* variables may accept an argument.</li>
* </ul>
- *
+ *
* @since 3.0
* @noimplement This interface is not intended to be implemented by clients.
*/

Back to the top