Skip to content
Snippets Groups Projects
Commit b39948ab authored by Sören Henning's avatar Sören Henning
Browse files

fix issue #36

parent 559fd714
No related branches found
No related tags found
1 merge request!17Get impletemented stages and Java 8
Pipeline #
...@@ -6,7 +6,7 @@ import java.util.Queue; ...@@ -6,7 +6,7 @@ import java.util.Queue;
import teetime.framework.AbstractStage; import teetime.framework.AbstractStage;
import teetime.framework.InputPort; import teetime.framework.InputPort;
public abstract class AbstractCombinerStage<I, J> extends AbstractStage { public abstract class AbstractBiCombinerStage<I, J> extends AbstractStage {
protected final InputPort<I> inputPort1 = this.createInputPort(); protected final InputPort<I> inputPort1 = this.createInputPort();
protected final InputPort<J> inputPort2 = this.createInputPort(); protected final InputPort<J> inputPort2 = this.createInputPort();
......
...@@ -17,7 +17,7 @@ import javax.xml.bind.Marshaller; ...@@ -17,7 +17,7 @@ import javax.xml.bind.Marshaller;
* @author Sören Henning * @author Sören Henning
* *
*/ */
public class JAXBMarshalStage<T> extends AbstractCombinerStage<JAXBElement<T>, OutputStream> { public class JAXBMarshalStage<T> extends AbstractBiCombinerStage<JAXBElement<T>, OutputStream> {
private static final Boolean FORMATTED_OUTPUT_DEFAULT = Boolean.TRUE; private static final Boolean FORMATTED_OUTPUT_DEFAULT = Boolean.TRUE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment