Skip to content

Commit

Permalink
making cache fields instance
Browse files Browse the repository at this point in the history
  • Loading branch information
akulk022 committed Jun 7, 2024
1 parent 4f81dc0 commit 71ce2e2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1288,10 +1288,10 @@ private static Symbol.MethodSymbol lookupHandlingOverrides(
/** Constructs Library Models from stubx files */
private static class ExternalStubxLibraryModels implements LibraryModels {

private static final Map<String, Map<String, Map<Integer, Set<String>>>> argAnnotCache;
private static final Map<String, Integer> upperBoundsCache;
private final Map<String, Map<String, Map<Integer, Set<String>>>> argAnnotCache;
private final Map<String, Integer> upperBoundsCache;

static {
ExternalStubxLibraryModels() {
String libraryModelLogName = "LM";
StubxCacheUtil cacheUtil = new StubxCacheUtil(libraryModelLogName);
argAnnotCache = cacheUtil.getArgAnnotCache();
Expand Down

0 comments on commit 71ce2e2

Please sign in to comment.