mirror of
https://github.com/mitb-archive/filebot
synced 2025-03-10 06:20:27 -04:00
Fix readability
This commit is contained in:
parent
aefda884a7
commit
38d9af01fe
@ -139,10 +139,10 @@ public class ArgumentProcessor {
|
||||
}
|
||||
|
||||
private int print(Stream<?> values) {
|
||||
return values.mapToInt(v -> {
|
||||
return values.map(v -> {
|
||||
System.out.println(v);
|
||||
return 1;
|
||||
}).sum() == 0 ? ERROR : SUCCESS;
|
||||
return v;
|
||||
}).count() > 0 ? SUCCESS : ERROR;
|
||||
}
|
||||
|
||||
private void printStegosaurus(String line1, String line2) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user