Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IWatchExpressionFactoryAdapter2.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IWatchExpressionFactoryAdapter2.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IWatchExpressionFactoryAdapter2.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IWatchExpressionFactoryAdapter2.java
index 13e810732..757df0308 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IWatchExpressionFactoryAdapter2.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IWatchExpressionFactoryAdapter2.java
@@ -38,7 +38,7 @@ public interface IWatchExpressionFactoryAdapter2 {
* @exception org.eclipse.core.runtime.CoreException if unable to create a watch
* expression
*/
- public String createWatchExpression(Object element) throws CoreException;
+ String createWatchExpression(Object element) throws CoreException;
/**
* Returns whether a watch expression can be created for the specified variable.
@@ -46,6 +46,6 @@ public interface IWatchExpressionFactoryAdapter2 {
* @param variable the specified variable
* @return whether an expression can be created
*/
- public boolean canCreateWatchExpression(Object variable);
+ boolean canCreateWatchExpression(Object variable);
}

Back to the top