This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 4cdc319 Camel-core-osgi: Fixed CS 4cdc319 is described below commit 4cdc319b152d6d8b63540387130bbd3b2c8af33c Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Thu Jan 23 15:32:45 2020 +0100 Camel-core-osgi: Fixed CS --- .../java/org/apache/camel/core/osgi/OsgiCamelContextPublisher.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/camel-core-osgi/src/main/java/org/apache/camel/core/osgi/OsgiCamelContextPublisher.java b/core/camel-core-osgi/src/main/java/org/apache/camel/core/osgi/OsgiCamelContextPublisher.java index cb9b996..ab0976d 100644 --- a/core/camel-core-osgi/src/main/java/org/apache/camel/core/osgi/OsgiCamelContextPublisher.java +++ b/core/camel-core-osgi/src/main/java/org/apache/camel/core/osgi/OsgiCamelContextPublisher.java @@ -42,13 +42,13 @@ import org.slf4j.LoggerFactory; */ public class OsgiCamelContextPublisher extends EventNotifierSupport { - private static final Logger LOG = LoggerFactory.getLogger(OsgiCamelContextPublisher.class); - public static final String CONTEXT_SYMBOLIC_NAME_PROPERTY = "camel.context.symbolicname"; public static final String CONTEXT_VERSION_PROPERTY = "camel.context.version"; public static final String CONTEXT_NAME_PROPERTY = "camel.context.name"; public static final String CONTEXT_MANAGEMENT_NAME_PROPERTY = "camel.context.managementname"; + private static final Logger LOG = LoggerFactory.getLogger(OsgiCamelContextPublisher.class); + private final BundleContext bundleContext; private final Map<CamelContext, ServiceRegistration<?>> registrations = new ConcurrentHashMap<>();