Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IVariableValueEditor.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IVariableValueEditor.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IVariableValueEditor.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IVariableValueEditor.java
index 623822819..b4f9fd605 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IVariableValueEditor.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IVariableValueEditor.java
@@ -54,7 +54,7 @@ public interface IVariableValueEditor {
* platform should prompt the user to edit the given variable using the default
* variable editor
*/
- public boolean editVariable(IVariable variable, Shell shell);
+ boolean editVariable(IVariable variable, Shell shell);
/**
* Saves the given expression to the given variable, if appropriate. If this
@@ -70,5 +70,5 @@ public interface IVariableValueEditor {
* <code>true</code> if no more work should be done, <code>false</code> if the debug
* platform should perform the default save operation
*/
- public boolean saveVariable(IVariable variable, String expression, Shell shell);
+ boolean saveVariable(IVariable variable, String expression, Shell shell);
}

Back to the top