Keep CLI console output text lowercase where possible

Be consistent.
This commit is contained in:
ghubstan 2022-05-15 18:57:23 -03:00
parent 8e5acf277d
commit b3e6160f19
No known key found for this signature in database
GPG Key ID: E35592D6800A861E

View File

@ -516,7 +516,7 @@ public class CliMain {
? client.getOpenTrades()
: client.getTradeHistory(category);
if (trades.isEmpty()) {
out.printf("no %s trades found%n", category.name());
out.printf("no %s trades found%n", category.name().toLowerCase());
} else {
var tableType = category.equals(OPEN)
? OPEN_TRADES_TBL