Fix variable naming smell
This commit is contained in:
parent
508a25f3b5
commit
7aa96eabae
|
@ -303,7 +303,7 @@ public class Recording implements Serializable, Callable<Recording> {
|
|||
|
||||
public Optional<File> getContactSheet() {
|
||||
return getAssociatedFiles().stream()
|
||||
.filter(path -> path.endsWith("contactsheet.jpg"))
|
||||
.filter(filePath -> filePath.endsWith("contactsheet.jpg"))
|
||||
.findFirst()
|
||||
.map(File::new);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue