Skip to content
This repository has been archived by the owner on Jan 27, 2025. It is now read-only.

Add documentation annotations (metafacture-core#498) #381

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions metafix/src/main/java/org/metafacture/metafix/Metafix.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@
* @author Christoph Böhme (Metamorph)
* @author Fabian Steeg (Metafix)
*/
@Description("Applies a fix transformation to the event stream, given as the path to a fix file or the fixes themselves.") // checkstyle-disable-line ClassDataAbstractionCoupling|ClassFanOutComplexity
@Description("Applies a Fx transformation to the event stream.") // checkstyle-disable-line ClassDataAbstractionCoupling|ClassFanOutComplexity
@In(StreamReceiver.class)
@Out(StreamReceiver.class)
@FluxCommand("fix")
public class Metafix implements StreamPipe<StreamReceiver>, Maps {
public class Metafix implements StreamPipe<StreamReceiver>, Maps { // checkstyle-disable-line ClassDataAbstractionCoupling
public static final String ARRAY_MARKER = "[]";
public static final String FIX_EXTENSION = ".fix";
public static final String VAR_END = "]";
Expand Down
Loading