mirror of
https://github.com/github/codeql.git
synced 2026-04-29 02:35:15 +02:00
JS: Make CachedOperation private
This commit is contained in:
@@ -40,7 +40,7 @@ public class AsyncFetcher {
|
||||
throw ex;
|
||||
}
|
||||
|
||||
class CachedOperation<K, V> {
|
||||
private class CachedOperation<K, V> {
|
||||
private Map<K, CompletableFuture<V>> cache = new LinkedHashMap<>();
|
||||
|
||||
public synchronized CompletableFuture<V> get(K key, Supplier<V> builder) {
|
||||
|
||||
Reference in New Issue
Block a user