Skip to content

Commit

Permalink
Showing 1 changed file with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -17,9 +17,6 @@

public class MethodNodes {

// TODO(CS): MethodNodes will never leave this cache
private final static Map<String, MethodNodes> cache = new ConcurrentHashMap<>();

private final ArgsNode argsNode;
private final Node bodyNode;

@@ -39,13 +36,4 @@ public Node getBodyNode() {
return bodyNode;
}

public static void cache(String methodJavaName, MethodNodes nodes) {
cache.put(methodJavaName, nodes);
}

public static MethodNodes lookup(String methodJavaName) {
return cache.get(methodJavaName);
}


}

0 comments on commit a8be7b9

Please sign in to comment.