You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by an...@apache.org on 2017/10/01 12:24:53 UTC

[3/3] incubator-tamaya-sandbox git commit: TAMAYA-300 Fixed constructor visiblity.

TAMAYA-300 Fixed constructor visiblity.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/commit/b11f3174
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/tree/b11f3174
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/diff/b11f3174

Branch: refs/heads/master
Commit: b11f317423927c3a658289f75cdf60c2a7c2f6ca
Parents: c990e96
Author: Anatole Tresch <an...@apache.org>
Authored: Sun Oct 1 14:24:43 2017 +0200
Committer: Anatole Tresch <an...@apache.org>
Committed: Sun Oct 1 14:24:43 2017 +0200

----------------------------------------------------------------------
 .../src/main/java/org/apache/tamaya/osgi/TamayaConfigPlugin.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/blob/b11f3174/osgi/common/src/main/java/org/apache/tamaya/osgi/TamayaConfigPlugin.java
----------------------------------------------------------------------
diff --git a/osgi/common/src/main/java/org/apache/tamaya/osgi/TamayaConfigPlugin.java b/osgi/common/src/main/java/org/apache/tamaya/osgi/TamayaConfigPlugin.java
index d0bf7e3..d986f0e 100644
--- a/osgi/common/src/main/java/org/apache/tamaya/osgi/TamayaConfigPlugin.java
+++ b/osgi/common/src/main/java/org/apache/tamaya/osgi/TamayaConfigPlugin.java
@@ -65,7 +65,7 @@ public class TamayaConfigPlugin implements BundleListener, ServiceListener{
      * Create a new getConfig.
      * @param context the OSGI context
      */
-    TamayaConfigPlugin(BundleContext context) {
+    public TamayaConfigPlugin(BundleContext context) {
         configChanger = new ConfigChanger(context);
         Dictionary<String,Object> props = getPluginConfig();
         Backups.restore(props);