MCPcopy Index your code
hub / github.com/evernat/dead-code-detector / getJavaMethods

Method getJavaMethods

src/main/java/dcd/Result.java:325–332  ·  view source on GitHub ↗
(String asmClassName)

Source from the content-addressed store, hash-verified

323 }
324
325 private Set<String> getJavaMethods(String asmClassName) {
326 Set<String> methods = javaMethodListByClassMap.get(asmClassName);
327 if (methods == null) {
328 methods = DcdHelper.getJavaMethods(asmClassName);
329 javaMethodListByClassMap.put(asmClassName, methods);
330 }
331 return methods;
332 }
333
334 Set<String> getAllMethods() {
335 final Set<String> result = new HashSet<>();

Callers 3

ResultClass · 0.95
excludeJavaMethodsMethod · 0.95
filterJavaMethodsMethod · 0.95

Calls 1

getJavaMethodsMethod · 0.95

Tested by

no test coverage detected