diff --git a/metafacture-mangling/src/main/java/org/metafacture/mangling/ObjectToLiteral.java b/metafacture-mangling/src/main/java/org/metafacture/mangling/ObjectToLiteral.java index 0c819156..022b5508 100644 --- a/metafacture-mangling/src/main/java/org/metafacture/mangling/ObjectToLiteral.java +++ b/metafacture-mangling/src/main/java/org/metafacture/mangling/ObjectToLiteral.java @@ -19,6 +19,7 @@ import org.metafacture.framework.FluxCommand; import org.metafacture.framework.StreamReceiver; import org.metafacture.framework.annotations.Description; +import org.metafacture.framework.annotations.In; import org.metafacture.framework.annotations.Out; import org.metafacture.framework.helpers.DefaultObjectPipe; @@ -29,7 +30,7 @@ * @author Christoph Böhme, Fabian Steeg */ @Description("Outputs a record containing the input object as literal") -@In(Object.class) +@In(Object.class) @Out(StreamReceiver.class) @FluxCommand("object-to-literal") public final class ObjectToLiteral extends