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) {
|
private int print(Stream<?> values) {
|
||||||
return values.mapToInt(v -> {
|
return values.map(v -> {
|
||||||
System.out.println(v);
|
System.out.println(v);
|
||||||
return 1;
|
return v;
|
||||||
}).sum() == 0 ? ERROR : SUCCESS;
|
}).count() > 0 ? SUCCESS : ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void printStegosaurus(String line1, String line2) {
|
private void printStegosaurus(String line1, String line2) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user