Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IRunToLineTarget.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IRunToLineTarget.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IRunToLineTarget.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IRunToLineTarget.java
index 016bbde63..5d10c8d68 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IRunToLineTarget.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IRunToLineTarget.java
@@ -51,7 +51,7 @@ public interface IRunToLineTarget {
* @param target suspended element to perform the "run to line" action on
* @throws CoreException if unable to perform the action
*/
- public void runToLine(IWorkbenchPart part, ISelection selection, ISuspendResume target) throws CoreException;
+ void runToLine(IWorkbenchPart part, ISelection selection, ISuspendResume target) throws CoreException;
/**
* Returns whether a run to line operation can be performed on the given
@@ -63,5 +63,5 @@ public interface IRunToLineTarget {
* @return if a run to line operation can be performed on the given
* element that is currently selected and suspended in the Debug view
*/
- public boolean canRunToLine(IWorkbenchPart part, ISelection selection, ISuspendResume target);
+ boolean canRunToLine(IWorkbenchPart part, ISelection selection, ISuspendResume target);
}

Back to the top