You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by da...@apache.org on 2018/07/12 21:03:09 UTC

[sling-whiteboard] branch master updated: Make FeatureServieFactorImpl package private

This is an automated email from the ASF dual-hosted git repository.

davidb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-whiteboard.git


The following commit(s) were added to refs/heads/master by this push:
     new b6bb996  Make FeatureServieFactorImpl package private
b6bb996 is described below

commit b6bb996714266ac416210d05ed28a90a14caa9fe
Author: David Bosschaert <da...@gmail.com>
AuthorDate: Thu Jul 12 23:02:43 2018 +0200

    Make FeatureServieFactorImpl package private
---
 .../apache/sling/feature/service/impl/FeaturesServiceFactoryImpl.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/featuremodel/feature-service/src/main/java/org/apache/sling/feature/service/impl/FeaturesServiceFactoryImpl.java b/featuremodel/feature-service/src/main/java/org/apache/sling/feature/service/impl/FeaturesServiceFactoryImpl.java
index 330ac67..91de294 100644
--- a/featuremodel/feature-service/src/main/java/org/apache/sling/feature/service/impl/FeaturesServiceFactoryImpl.java
+++ b/featuremodel/feature-service/src/main/java/org/apache/sling/feature/service/impl/FeaturesServiceFactoryImpl.java
@@ -32,7 +32,7 @@ import java.util.Map.Entry;
 class FeaturesServiceFactoryImpl implements FeaturesFactory {
     private final BundleContext bundleContext;
 
-    public FeaturesServiceFactoryImpl(BundleContext context) {
+    FeaturesServiceFactoryImpl(BundleContext context) {
         bundleContext = context;
     }