Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpointImportParticipant.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpointImportParticipant.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpointImportParticipant.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpointImportParticipant.java
index 302d19001..3b6233680 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpointImportParticipant.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpointImportParticipant.java
@@ -54,7 +54,7 @@ public interface IBreakpointImportParticipant {
* @return true if the breakpoint matches the given attributes, false otherwise
* @throws CoreException if an exception occurs
*/
- public boolean matches(Map<String, Object> attributes, IBreakpoint breakpoint) throws CoreException;
+ boolean matches(Map<String, Object> attributes, IBreakpoint breakpoint) throws CoreException;
/**
* Verifies the state of the breakpoint once it has been imported. This method can be used to correct
@@ -65,6 +65,6 @@ public interface IBreakpointImportParticipant {
* @param breakpoint the breakpoint to be verified
* @throws CoreException if an exception occurs
*/
- public void verify(IBreakpoint breakpoint) throws CoreException;
+ void verify(IBreakpoint breakpoint) throws CoreException;
}

Back to the top