code review
This commit is contained in:
parent
978a80b9dc
commit
af9478cd64
|
@ -16,7 +16,7 @@ public class MissingFilesDetector {
|
||||||
return;
|
return;
|
||||||
|
|
||||||
torrentFileLengths.keySet().forEach(fileSize ->
|
torrentFileLengths.keySet().forEach(fileSize ->
|
||||||
takeDecisionForComparing(fileSize, torrentFileLengths));
|
takeDecisionForMismatch(fileSize, torrentFileLengths));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ public class MissingFilesDetector {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void takeDecisionForComparing(Long fileSize, Map<Long, List<Path>> torrentFileLengths) {
|
void takeDecisionForMismatch(Long fileSize, Map<Long, List<Path>> torrentFileLengths) {
|
||||||
var alreadyExists = torrentFileLengths.containsKey(fileSize);
|
var alreadyExists = torrentFileLengths.containsKey(fileSize);
|
||||||
if (!alreadyExists) {
|
if (!alreadyExists) {
|
||||||
System.out.printf("- needs to copy %s%n", torrentFileLengths.get(fileSize));
|
System.out.printf("- needs to copy %s%n", torrentFileLengths.get(fileSize));
|
||||||
|
|
Loading…
Reference in New Issue