This is my Command Builder
public static final Parameter.Value<Integer> LINE = Parameter.integerNumber().optional().key("Line").build();
public static final Parameter.Value<String> MESSAGE = Parameter.remainingJoinedStrings().optional().key("Message").build();
Command.builder().addParameters(LINE, MESSAGE)
Why It shows 2 line ? I just want it show only 1 line.
How can I make the command with show parameter only 1 line ?
Please help me.