Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariable.java')
-rw-r--r--org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariable.java8
1 files changed, 4 insertions, 4 deletions
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 70c3e25f0..128c907c9 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
@@ -42,16 +42,16 @@ public interface IStringVariable {
/**
* Returns the name of this variable. A variable is uniquely identified by
* its name.
- *
+ *
* @return variable name
*/
public String getName();
-
+
/**
* Returns a human readable description of this variable, possibly <code>null</code>
- *
+ *
* @return a description of this variable, or <code>null</code> if none
*/
public String getDescription();
-
+
}

Back to the top