Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStepFilters.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStepFilters.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStepFilters.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStepFilters.java
index 1c58584fd..7be26e164 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStepFilters.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStepFilters.java
@@ -44,7 +44,7 @@ public interface IStepFilters {
*
* @return whether this debug target supports step filters
*/
- public boolean supportsStepFilters();
+ boolean supportsStepFilters();
/**
* Returns whether step filters are currently enabled in this
@@ -53,12 +53,12 @@ public interface IStepFilters {
* @return whether step filters are currently enabled in this
* debug target
*/
- public boolean isStepFiltersEnabled();
+ boolean isStepFiltersEnabled();
/**
* Sets whether step filters are enabled in this debug target.
*
* @param enabled whether step filters are enabled in this debug target
*/
- public void setStepFiltersEnabled(boolean enabled);
+ void setStepFiltersEnabled(boolean enabled);
}

Back to the top