commit 767091f445a471fdc52098d5d9a7972b6683f9ca
Author: Cristiano Gaviao <[email protected]>
AuthorDate: Thu, 20 Jun 2013 12:46:00 -0300
Commit: Cristiano Gaviao <[email protected]>
CommitDate: Thu, 20 Jun 2013 12:46:00 -0300
fixed constructor signature
diff --git
a/jbehave-osgi-bundles/org.jbehave.osgi.core/src/main/java/org/jbehave/osgi/core/embedder/EmbedderOsgi.java
b/jbehave-osgi-bundles/org.jbehave.osgi.core/src/main/java/org/jbehave/osgi/core/embedder/EmbedderOsgi.java
index 6a8ae1b..b70f658 100644
---
a/jbehave-osgi-bundles/org.jbehave.osgi.core/src/main/java/org/jbehave/osgi/core/embedder/EmbedderOsgi.java
+++
b/jbehave-osgi-bundles/org.jbehave.osgi.core/src/main/java/org/jbehave/osgi/core/embedder/EmbedderOsgi.java
@@ -10,13 +10,14 @@ import
org.jbehave.osgi.core.configuration.ConfigurationOsgi;
/**
*
* @author Cristiano Gavião
- *
*/
public class EmbedderOsgi extends Embedder {
public EmbedderOsgi(Class<?> loadFromBundleClass) {
super(new StoryMapper(), new PerformableTree(),
- new PrintStreamEmbedderMonitor(), new
ConfigurationOsgi(
+ new PrintStreamEmbedderMonitor());
+
+ useConfiguration(new ConfigurationOsgi(
loadFromBundleClass));
useClassLoader(new EmbedderClassLoader(
loadFromBundleClass.getClassLoader()));