Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/AbstractDebugContextProvider.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/AbstractDebugContextProvider.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/AbstractDebugContextProvider.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/AbstractDebugContextProvider.java
index e19bd7991..3f1824d80 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/AbstractDebugContextProvider.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/AbstractDebugContextProvider.java
@@ -24,20 +24,20 @@ import org.eclipse.ui.IWorkbenchPart;
* @since 3.3
*/
public abstract class AbstractDebugContextProvider implements IDebugContextProvider {
-
+
/**
* Event listeners
*/
private ListenerList<IDebugContextListener> fListeners = new ListenerList<>();
-
+
/**
* Part or <code>null</code>
*/
private IWorkbenchPart fPart;
-
+
/**
* Constructs a context provider for the specified part, possibly <code>null</code>.
- *
+ *
* @param part workbench part or <code>null</code>
*/
public AbstractDebugContextProvider(IWorkbenchPart part) {
@@ -70,7 +70,7 @@ public abstract class AbstractDebugContextProvider implements IDebugContextProvi
/**
* Fires the given context event to all registered listeners.
- *
+ *
* @param event debug context event
*/
protected void fire(final DebugContextEvent event) {
@@ -86,7 +86,7 @@ public abstract class AbstractDebugContextProvider implements IDebugContextProvi
DebugUIPlugin.log(exception);
}
});
-
+
}
}
}

Back to the top