From 914ea8971e86ab89e90c9ffc6242eb5b007525a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20B=C3=BClte?= Date: Wed, 9 Oct 2024 14:27:14 +0200 Subject: [PATCH] Adjust as suggested by reviewer @fsteeg --- .../main/java/org/metafacture/mangling/ObjectToLiteral.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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