Skip to content

Commit 5374b66

Browse files
committed
JS: Make CachedOperation private
1 parent 433e3e7 commit 5374b66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/extractor/src/com/semmle/js/dependencies/AsyncFetcher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ private CompletionException makeError(String message, Exception cause) {
4040
throw ex;
4141
}
4242

43-
class CachedOperation<K, V> {
43+
private class CachedOperation<K, V> {
4444
private Map<K, CompletableFuture<V>> cache = new LinkedHashMap<>();
4545

4646
public synchronized CompletableFuture<V> get(K key, Supplier<V> builder) {

0 commit comments

Comments
 (0)