MCPcopy Index your code
hub / github.com/apache/tomcat / initTldScanner

Method initTldScanner

java/org/apache/jasper/JspC.java:1735–1742  ·  view source on GitHub ↗

Initializes the TLD scanner for the given servlet context and class loader. @param context The servlet context @param classLoader The class loader to use

(JspCServletContext context, ClassLoader classLoader)

Source from the content-addressed store, hash-verified

1733 * @param classLoader The class loader to use
1734 */
1735 protected void initTldScanner(JspCServletContext context, ClassLoader classLoader) {
1736 if (scanner != null) {
1737 return;
1738 }
1739
1740 scanner = newTldScanner(context, true, isValidateTld(), isBlockExternal());
1741 scanner.setClassLoader(classLoader);
1742 }
1743
1744
1745 /**

Callers 1

initServletContextMethod · 0.95

Calls 4

newTldScannerMethod · 0.95
isValidateTldMethod · 0.95
isBlockExternalMethod · 0.95
setClassLoaderMethod · 0.45

Tested by

no test coverage detected