Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Rennie2006-06-28 19:57:44 +0000
committerMichael Rennie2006-06-28 19:57:44 +0000
commit28cc66c705b749fbb3f0c3c8de9e737e1cf19c74 (patch)
tree96c4044629595ddbae326c0bfb8245ce74cdcb80 /org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java
parentba714546b3bb8ac11c3619877987212760adb93a (diff)
downloadeclipse.platform.debug-28cc66c705b749fbb3f0c3c8de9e737e1cf19c74.tar.gz
eclipse.platform.debug-28cc66c705b749fbb3f0c3c8de9e737e1cf19c74.tar.xz
eclipse.platform.debug-28cc66c705b749fbb3f0c3c8de9e737e1cf19c74.zip
Bug 148940
[Preferences] Step filter settings broken post-RC7 and Bug 149069 [preferences] Move USE_STEP_FILTERING pref constant to public API
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java11
1 files changed, 5 insertions, 6 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java
index 3afbc6388..df279269c 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java
@@ -214,12 +214,11 @@ public interface IDebugUIConstants {
*/
public static final String PREF_SKIP_BREAKPOINTS_DURING_RUN_TO_LINE= PLUGIN_ID + ".skip_breakpoints_during_run_to_line"; //$NON-NLS-1$
- //
- // Preference for using step filters.
- // TODO: uncomment when API freeze is over
- // @since 3.2
- //
- //public static final String PREF_USE_STEP_FILTERS = PLUGIN_ID + ".USE_STEP_FILTERS"; //$NON-NLS-1$
+ /**
+ * Preference for using step filters.
+ * @since 3.3
+ */
+ public static final String PREF_USE_STEP_FILTERS = PLUGIN_ID + ".USE_STEP_FILTERS"; //$NON-NLS-1$
/**
* String preference controlling in which perspectives view

Back to the top