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/13 08:05:20 UTC

incubator-tamaya-sandbox git commit: TAMAYA-300 Removed invalid plugin ref.

Repository: incubator-tamaya-sandbox
Updated Branches:
  refs/heads/master fdc5a1644 -> 5a598699c


TAMAYA-300 Removed invalid plugin ref.


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/5a598699
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/tree/5a598699
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/diff/5a598699

Branch: refs/heads/master
Commit: 5a598699cf608a0c96e587735a1032138b93428c
Parents: fdc5a16
Author: Anatole Tresch <an...@apache.org>
Authored: Fri Oct 13 10:05:12 2017 +0200
Committer: Anatole Tresch <an...@apache.org>
Committed: Fri Oct 13 10:05:12 2017 +0200

----------------------------------------------------------------------
 .../org/apache/tamaya/karaf/shell/ApplyTamayaConfigCommand.java   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/blob/5a598699/osgi/karaf-shell/src/main/java/org/apache/tamaya/karaf/shell/ApplyTamayaConfigCommand.java
----------------------------------------------------------------------
diff --git a/osgi/karaf-shell/src/main/java/org/apache/tamaya/karaf/shell/ApplyTamayaConfigCommand.java b/osgi/karaf-shell/src/main/java/org/apache/tamaya/karaf/shell/ApplyTamayaConfigCommand.java
index f6a7dc8..d6b13c6 100644
--- a/osgi/karaf-shell/src/main/java/org/apache/tamaya/karaf/shell/ApplyTamayaConfigCommand.java
+++ b/osgi/karaf-shell/src/main/java/org/apache/tamaya/karaf/shell/ApplyTamayaConfigCommand.java
@@ -25,6 +25,7 @@ import org.apache.karaf.shell.api.action.Option;
 import org.apache.karaf.shell.api.action.lifecycle.Service;
 import org.apache.tamaya.osgi.TamayaConfigPlugin;
 import org.apache.tamaya.osgi.commands.ConfigCommands;
+import org.apache.tamaya.osgi.commands.TamayaConfigService;
 
 import java.io.IOException;
 
@@ -45,7 +46,7 @@ public class ApplyTamayaConfigCommand implements Action{
     boolean dryRun = false;
 
     @org.apache.karaf.shell.api.action.lifecycle.Reference
-    TamayaConfigPlugin configPlugin;
+    TamayaConfigService configPlugin;
 
 
     public Object execute() throws IOException {