Some general-purpose lint cleanup
This commit is contained in:
parent
273c287fbf
commit
f86b40302d
17 changed files with 24 additions and 31 deletions
|
|
@ -115,7 +115,7 @@ public abstract class Postprocessing implements Serializable {
|
|||
mission.done = 0;
|
||||
|
||||
long length = mission.storage.length() - mission.offsets[0];
|
||||
mission.length = length > mission.nearLength ? length : mission.nearLength;
|
||||
mission.length = Math.max(length, mission.nearLength);
|
||||
|
||||
final ProgressReport readProgress = (long position) -> {
|
||||
position -= mission.offsets[0];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue