We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53ad741 commit d852263Copy full SHA for d852263
core/src/main/java/net/adoptopenjdk/icedteaweb/resources/cache/CacheImpl.java
@@ -214,6 +214,10 @@ boolean isCached(CacheKey key) {
214
*/
215
boolean isUpToDate(CacheKey key, long lastModified) {
216
final Boolean isUpToDate = getResourceInfo(key)
217
+ .map(cachedFile -> {
218
+ LOG.debug("found {} for {}", cachedFile.getCacheKey(), key);
219
+ return cachedFile;
220
+ })
221
.map(cachedFile -> cachedFile.isCurrent(lastModified))
222
.orElse(false);
223
LOG.info("isUpToDate: {} = {}", key, isUpToDate);
0 commit comments