Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.e4.core.contexts/src/org/eclipse/e4/core/internal/contexts/IEclipseContextDebugger.java')
-rw-r--r--bundles/org.eclipse.e4.core.contexts/src/org/eclipse/e4/core/internal/contexts/IEclipseContextDebugger.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.e4.core.contexts/src/org/eclipse/e4/core/internal/contexts/IEclipseContextDebugger.java b/bundles/org.eclipse.e4.core.contexts/src/org/eclipse/e4/core/internal/contexts/IEclipseContextDebugger.java
index 041035a09..df862eed3 100644
--- a/bundles/org.eclipse.e4.core.contexts/src/org/eclipse/e4/core/internal/contexts/IEclipseContextDebugger.java
+++ b/bundles/org.eclipse.e4.core.contexts/src/org/eclipse/e4/core/internal/contexts/IEclipseContextDebugger.java
@@ -12,11 +12,11 @@ package org.eclipse.e4.core.internal.contexts;
public interface IEclipseContextDebugger {
- public static final String SERVICE_NAME = IEclipseContextDebugger.class.getName();
+ String SERVICE_NAME = IEclipseContextDebugger.class.getName();
public enum EventType {
CONSTRUCTED, DISPOSED, LISTENER_ADDED
}
- public void notify(EclipseContext context, EventType type, Object data);
+ void notify(EclipseContext context, EventType type, Object data);
}

Back to the top