Make opt description generic

This commit is contained in:
ghubstan 2021-01-16 13:44:02 -03:00
parent 5538914cf8
commit ef4acc0b73
No known key found for this signature in database
GPG key ID: E35592D6800A861E

View file

@ -27,7 +27,7 @@ import static joptsimple.internal.Strings.EMPTY;
public class WithdrawFundsOptionParser extends AbstractMethodOptionParser implements MethodOpts {
final OptionSpec<String> tradeIdOpt = parser.accepts(OPT_TRADE_ID, "id of trade to get")
final OptionSpec<String> tradeIdOpt = parser.accepts(OPT_TRADE_ID, "id of trade")
.withRequiredArg()
.defaultsTo(EMPTY);