Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java
index 8ca4c9a77..4009f9a54 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java
@@ -1165,12 +1165,12 @@ public class DebugPlugin extends Plugin {
fEvents = events;
if (!fEventFilters.isEmpty()) {
fMode = NOTIFY_FILTERS;
- }
- for (IDebugEventFilter iDebugEventFilter : fEventFilters) {
- fFilter = iDebugEventFilter;
- SafeRunner.run(this);
- if (fEvents == null || fEvents.length == 0) {
- return;
+ for (IDebugEventFilter iDebugEventFilter : fEventFilters) {
+ fFilter = iDebugEventFilter;
+ SafeRunner.run(this);
+ if (fEvents == null || fEvents.length == 0) {
+ return;
+ }
}
}

Back to the top