Fix readability

This commit is contained in:
Reinhard Pointner 2019-04-30 15:24:31 +07:00
parent 1182fbdc60
commit aefda884a7
1 changed files with 2 additions and 2 deletions

View File

@ -141,8 +141,8 @@ public class ArgumentProcessor {
private int print(Stream<?> values) {
return values.mapToInt(v -> {
System.out.println(v);
return ERROR;
}).sum() == SUCCESS ? ERROR : SUCCESS;
return 1;
}).sum() == 0 ? ERROR : SUCCESS;
}
private void printStegosaurus(String line1, String line2) {