From 6ed4207635b1ac2f4bb9611e82130002602f0d4d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20de=20Talhou=C3=ABt?= Date: Tue, 23 Aug 2016 08:26:32 -0400 Subject: [PATCH] Turn off visibility of GlobalBundleScanningSchemaServiceImpl#start() MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Since the start() method is only used in the createInstance(), it should be private and not exposed. Change-Id: I0264d0a66bbfb2536bc4d6c57f27f15584ddfabb Signed-off-by: Alexis de Talhouët --- .../service/impl/GlobalBundleScanningSchemaServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opendaylight/md-sal/sal-schema-service/src/main/java/org/opendaylight/controller/sal/schema/service/impl/GlobalBundleScanningSchemaServiceImpl.java b/opendaylight/md-sal/sal-schema-service/src/main/java/org/opendaylight/controller/sal/schema/service/impl/GlobalBundleScanningSchemaServiceImpl.java index c54b2e3885..19232db486 100644 --- a/opendaylight/md-sal/sal-schema-service/src/main/java/org/opendaylight/controller/sal/schema/service/impl/GlobalBundleScanningSchemaServiceImpl.java +++ b/opendaylight/md-sal/sal-schema-service/src/main/java/org/opendaylight/controller/sal/schema/service/impl/GlobalBundleScanningSchemaServiceImpl.java @@ -72,7 +72,7 @@ public class GlobalBundleScanningSchemaServiceImpl implements SchemaContextProvi return context; } - public void start() { + private void start() { checkState(context != null); LOG.debug("start() starting"); -- 2.36.6