Re-add public declaration 35/36935/2
authorPatrick Brady <pb071s@att.com>
Tue, 20 Mar 2018 05:59:26 +0000 (22:59 -0700)
committerPatrick Brady <pb071s@att.com>
Tue, 20 Mar 2018 15:27:17 +0000 (15:27 +0000)
The public declaration of setDbLibService was removed as part of this
(https://gerrit.onap.org/r/#/c/35763/) commit. This caused a failure in
karaf and the appc-common bundle failed to come up. This commit re-adds
public.

Change-Id: Ia6fa5d950b17e4f440a1243d071c90eedc9be818
Signed-off-by: Patrick Brady <pb071s@att.com>
Issue-ID: APPC-731

appc-common/src/main/java/org/onap/appc/metadata/impl/MetadataServiceImpl.java

index 2a2218c..79d0ffa 100644 (file)
@@ -56,7 +56,7 @@ public class MetadataServiceImpl implements MetadataService {
         // TODO initialze dbLibService
     }
 
-    void setDbLibService(DbLibService dbLibService) {
+    public void setDbLibService(DbLibService dbLibService) {
         this.dbLibService = dbLibService;
     }