Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Auge2016-02-21 21:06:54 +0000
committerRaymond Auge2016-03-25 03:55:08 +0000
commitcf1b7483d4e05df18a8ac4ca5fc6b20db0a22c35 (patch)
tree61fc36a5dbe38aa7f69fc0109b91c5d6f17dc601
parentf97f1240f1bde4053da9802fe7dee752e272d2c5 (diff)
downloadrt.equinox.bundles-cf1b7483d4e05df18a8ac4ca5fc6b20db0a22c35.tar.gz
rt.equinox.bundles-cf1b7483d4e05df18a8ac4ca5fc6b20db0a22c35.tar.xz
rt.equinox.bundles-cf1b7483d4e05df18a8ac4ca5fc6b20db0a22c35.zip
fix debug
-rw-r--r--bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/context/ContextController.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/context/ContextController.java b/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/context/ContextController.java
index d656d0d8f..04291f73d 100644
--- a/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/context/ContextController.java
+++ b/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/context/ContextController.java
@@ -141,7 +141,7 @@ public class ContextController {
this.trackingContext = trackingContextParam;
this.consumingContext = consumingContext;
- this.string = getClass().getSimpleName() + '[' + contextName + ", " + consumingContext.getBundle() + ']'; //$NON-NLS-1$
+ this.string = getClass().getSimpleName() + '[' + contextName + ", " + trackingContextParam.getBundle() + ']'; //$NON-NLS-1$
listenerServiceTracker = new ServiceTracker<EventListener, AtomicReference<ListenerRegistration>>(
trackingContext, httpServiceRuntime.getListenerFilter(),

Back to the top