MCPcopy Create free account
hub / github.com/apache/pig / getClassCache

Method getClassCache

src/org/apache/pig/impl/PigContext.java:635–643  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

633 }
634
635 private static Map<String,Class<?>> getClassCache() {
636 Map<String,Class<?>> c = classCache.get();
637 if (c == null) {
638 c = new HashMap<String,Class<?>>();
639 classCache.set(c);
640 }
641
642 return c;
643 }
644
645 @SuppressWarnings("rawtypes")
646 public static Class resolveClassName(String name) throws IOException{

Callers 1

resolveClassNameMethod · 0.95

Calls 2

getMethod · 0.65
setMethod · 0.65

Tested by

no test coverage detected