Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make class-level caches for InferredJARModelsHandler instance fields. #315

Merged
merged 1 commit into from May 20, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -72,9 +72,9 @@ private static void LOG(boolean cond, String tag, String msg) {

private static final int RETURN = -1; // '-1' indexes Return type in the Annotation Cache

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

private final Config config;

Expand Down