mirror of
https://github.com/mitb-archive/filebot
synced 2024-12-23 08:18:52 -05:00
Synchronize memoized resource getter
This commit is contained in:
parent
3f870c4a1f
commit
5bbc697a76
@ -32,10 +32,12 @@ class MemoizedResource<R> implements Resource<R> {
|
||||
|
||||
@Override
|
||||
public R get() throws Exception {
|
||||
if (value == null) {
|
||||
value = resource.get();
|
||||
synchronized (resource) {
|
||||
if (value == null) {
|
||||
value = resource.get();
|
||||
}
|
||||
return value;
|
||||
}
|
||||
return value;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user