Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model/IWatchExpressionDelegate.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IWatchExpressionDelegate.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IWatchExpressionDelegate.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IWatchExpressionDelegate.java
index 0757ee95a..17c6223a4 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IWatchExpressionDelegate.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IWatchExpressionDelegate.java
@@ -46,6 +46,6 @@ public interface IWatchExpressionDelegate {
* @param context the context for the evaluation
* @param listener the listener to notify when the evaluation completes
*/
- public void evaluateExpression(String expression, IDebugElement context, IWatchExpressionListener listener);
+ void evaluateExpression(String expression, IDebugElement context, IWatchExpressionListener listener);
}

Back to the top