Repository: incubator-tamaya-sandbox Updated Branches: refs/heads/master 03b730bc5 -> 9fd934e42
TAMAYA-300 Fixed tests and invalid command output. 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/9fd934e4 Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/tree/9fd934e4 Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/diff/9fd934e4 Branch: refs/heads/master Commit: 9fd934e42e1b63d94a81955c46ac8ff3ca22f4c2 Parents: 03b730b Author: Anatole Tresch <[email protected]> Authored: Mon Oct 2 00:50:33 2017 +0200 Committer: Anatole Tresch <[email protected]> Committed: Mon Oct 2 00:50:33 2017 +0200 ---------------------------------------------------------------------- .../main/java/org/apache/tamaya/osgi/updater/EventListener.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/blob/9fd934e4/osgi/updater/src/main/java/org/apache/tamaya/osgi/updater/EventListener.java ---------------------------------------------------------------------- diff --git a/osgi/updater/src/main/java/org/apache/tamaya/osgi/updater/EventListener.java b/osgi/updater/src/main/java/org/apache/tamaya/osgi/updater/EventListener.java index f2e0e95..29e7712 100644 --- a/osgi/updater/src/main/java/org/apache/tamaya/osgi/updater/EventListener.java +++ b/osgi/updater/src/main/java/org/apache/tamaya/osgi/updater/EventListener.java @@ -21,7 +21,7 @@ package org.apache.tamaya.osgi.updater; import org.apache.tamaya.events.ConfigEvent; import org.apache.tamaya.events.ConfigEventListener; import org.apache.tamaya.events.ConfigurationChange; -import org.apache.tamaya.osgi.OperationMode; +import org.apache.tamaya.osgi.Policy; import org.apache.tamaya.osgi.TamayaConfigPlugin; import org.osgi.framework.*; import org.osgi.service.cm.ConfigurationAdmin; @@ -32,7 +32,7 @@ import java.util.logging.Logger; /** * Tamaya plugin that updates/extends the component configurations managed - * by {@link ConfigurationAdmin}, based on the configured {@link OperationMode}. + * by {@link ConfigurationAdmin}, based on the configured {@link Policy}. */ final class EventListener implements ConfigEventListener{ private static final Logger LOG = Logger.getLogger(EventListener.class.getName());
