Skip to content

Commit

Permalink
Revert "[remkop#802][remkop#1284] fix broken test"
Browse files Browse the repository at this point in the history
This reverts commit b99c1da.
  • Loading branch information
MarkoMackic authored Oct 17, 2021
1 parent ea7fcea commit 799f36e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/picocli/CommandLine.java
Original file line number Diff line number Diff line change
Expand Up @@ -13846,7 +13846,7 @@ private int addUserInputToList(ArgSpec argSpec, List<Object> result, int consume
char[] input = readUserInput(argSpec);
String inputString = new String(input);
if (tracer.isInfo()) {
String value = argSpec.echo() ? inputString + " (interactive value)" : "*** (masked interactive value)";
String value = argSpec.echo() ? input + " (interactive value)" : "*** (masked interactive value)";
tracer.info("Adding %s to %s for %s on %s%n", value, argSpec.toString(), argDescription, argSpec.scopeString());
}
String maskedValue = getMaskedValue(argSpec, inputString);
Expand Down

0 comments on commit 799f36e

Please sign in to comment.