Skip to content

Commit

Permalink
entryCache can't be final
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Gross cogross committed Feb 26, 2024
1 parent 0d25f44 commit ee4b108
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public abstract class Loader<K,V> extends CacheLoader<K,V> implements Runnable {
/**
* Base cache for all loaders.
*/
protected final Map<K,V> entryCache;
protected Map<K,V> entryCache;

/**
* Executor service, instantiated by the super class
Expand Down

0 comments on commit ee4b108

Please sign in to comment.