Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java
index ba0848ca5..cc30adab6 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java
@@ -226,7 +226,7 @@ public interface IBreakpoint extends IAdaptable {
* this breakpoint's underlying marker
* @since 3.11
*/
- default public boolean isTriggerPoint() throws CoreException {
+ public default boolean isTriggerPoint() throws CoreException {
return false;
}
@@ -241,7 +241,7 @@ public interface IBreakpoint extends IAdaptable {
* this breakpoint's underlying marker.
* @since 3.11
*/
- default public void setTriggerPoint(boolean trigger) throws CoreException {
+ public default void setTriggerPoint(boolean trigger) throws CoreException {
}
/**
@@ -255,7 +255,7 @@ public interface IBreakpoint extends IAdaptable {
* this breakpoint's underlying marker.
* @since 3.11
*/
- default public void setTriggerPointActive(boolean active) throws CoreException {
+ public default void setTriggerPointActive(boolean active) throws CoreException {
}
/**
@@ -266,7 +266,7 @@ public interface IBreakpoint extends IAdaptable {
* this breakpoint's underlying marker
* @since 3.11
*/
- default public boolean isTriggerPointActive() throws CoreException {
+ public default boolean isTriggerPointActive() throws CoreException {
return false;
}

Back to the top