forked from j62/ctbrec
1
0
Fork 0

Fix variable naming smell

This commit is contained in:
0xb00bface 2021-01-23 10:23:46 +01:00
parent 508a25f3b5
commit 7aa96eabae
1 changed files with 1 additions and 1 deletions

View File

@ -303,7 +303,7 @@ public class Recording implements Serializable, Callable<Recording> {
public Optional<File> getContactSheet() { public Optional<File> getContactSheet() {
return getAssociatedFiles().stream() return getAssociatedFiles().stream()
.filter(path -> path.endsWith("contactsheet.jpg")) .filter(filePath -> filePath.endsWith("contactsheet.jpg"))
.findFirst() .findFirst()
.map(File::new); .map(File::new);
} }