You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jb...@apache.org on 2013/12/18 13:23:00 UTC

[25/50] [abbrv] git commit: Use new FeaturesService method

Use new FeaturesService method

git-svn-id: https://svn.apache.org/repos/asf/karaf/cellar/trunk@1482301 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/karaf-cellar/repo
Commit: http://git-wip-us.apache.org/repos/asf/karaf-cellar/commit/5c36aa3c
Tree: http://git-wip-us.apache.org/repos/asf/karaf-cellar/tree/5c36aa3c
Diff: http://git-wip-us.apache.org/repos/asf/karaf-cellar/diff/5c36aa3c

Branch: refs/heads/master
Commit: 5c36aa3c6936f1487ad1bd858f85cad892bdea39
Parents: c981561
Author: jbonofre <jb...@13f79535-47bb-0310-9956-ffa450edef68>
Authored: Tue May 14 11:13:32 2013 +0000
Committer: jbonofre <jb...@13f79535-47bb-0310-9956-ffa450edef68>
Committed: Tue May 14 11:13:32 2013 +0000

----------------------------------------------------------------------
 .../org/apache/karaf/cellar/features/FeaturesEventHandler.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/karaf-cellar/blob/5c36aa3c/features/src/main/java/org/apache/karaf/cellar/features/FeaturesEventHandler.java
----------------------------------------------------------------------
diff --git a/features/src/main/java/org/apache/karaf/cellar/features/FeaturesEventHandler.java b/features/src/main/java/org/apache/karaf/cellar/features/FeaturesEventHandler.java
index 5d4ea54..fc16741 100644
--- a/features/src/main/java/org/apache/karaf/cellar/features/FeaturesEventHandler.java
+++ b/features/src/main/java/org/apache/karaf/cellar/features/FeaturesEventHandler.java
@@ -93,7 +93,7 @@ public class FeaturesEventHandler extends FeaturesSupport implements EventHandle
                         featuresService.installFeature(name, version, options);
                     } else {
                         LOGGER.debug("CELLAR FEATURES: installing feature {}", name);
-                        featuresService.installFeature(name, "0.0.0", options);
+                        featuresService.installFeature(name, options);
                     }
                 } else if (FeatureEvent.EventType.FeatureUninstalled.equals(type) && isInstalled) {
                     if (version != null) {