Skip to content

Commit 914ea89

Browse files
committed
Adjust as suggested by reviewer
@fsteeg
1 parent 21accfe commit 914ea89

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

metafacture-mangling/src/main/java/org/metafacture/mangling/ObjectToLiteral.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import org.metafacture.framework.FluxCommand;
2020
import org.metafacture.framework.StreamReceiver;
2121
import org.metafacture.framework.annotations.Description;
22+
import org.metafacture.framework.annotations.In;
2223
import org.metafacture.framework.annotations.Out;
2324
import org.metafacture.framework.helpers.DefaultObjectPipe;
2425

@@ -29,7 +30,7 @@
2930
* @author Christoph Böhme, Fabian Steeg
3031
*/
3132
@Description("Outputs a record containing the input object as literal")
32-
@In(Object.class)
33+
@In(Object.class)
3334
@Out(StreamReceiver.class)
3435
@FluxCommand("object-to-literal")
3536
public final class ObjectToLiteral<T> extends

0 commit comments

Comments
 (0)