Skip to content

Commit 511d2a0

Browse files
committed
[bugfix] Fix compilation for changed Caffeine API
1 parent c832a78 commit 511d2a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exist-core/src/main/java/org/exist/collections/CollectionCache.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public void put(final Collection collection) {
154154
* @param collectionUri The URI of the Collection to remove from the Cache
155155
*/
156156
public void invalidate(final XmldbURI collectionUri) {
157-
cache.invalidate(collectionUri);
157+
cache.invalidate(key(collectionUri));
158158
}
159159

160160
/**

0 commit comments

Comments
 (0)