forked from j62/ctbrec
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() {
|
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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue