Types are good. Fixed `java.lang.ClassCastException: Cannot cast java.net.URI to [B` issues.

@see https://www.filebot.net/forums/viewtopic.php?f=10&t=3808
This commit is contained in:
Reinhard Pointner 2016-05-23 14:17:40 +08:00
parent 837208a09b
commit 8bed1ba2df
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ public class CachedResource<K, R> implements Resource<R> {
if (element == null || element.getObjectValue() == null) {
throw e;
}
return element.getObjectKey();
return element.getObjectValue();
}
});