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

Method init

java/org/apache/jasper/compiler/JspConfig.java:151–165  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

149 }
150
151 private void init() {
152
153 if (!initialized) {
154 synchronized (this) {
155 if (!initialized) {
156 processWebDotXml();
157 defaultJspProperty = new JspProperty(defaultIsXml, defaultIsELIgnored, defaultErrorOnELNotFound,
158 defaultIsScriptingInvalid, null, null, null, defaultDeferedSyntaxAllowedAsLiteral,
159 defaultTrimDirectiveWhitespaces, defaultDefaultContentType, defaultBuffer,
160 defaultErrorOnUndeclaredNamespace);
161 initialized = true;
162 }
163 }
164 }
165 }
166
167 /**
168 * Select the property group that has more restrictive url-pattern. In case of tie, select the first.

Callers 2

findJspPropertyMethod · 0.95
isJspPageMethod · 0.95

Calls 1

processWebDotXmlMethod · 0.95

Tested by

no test coverage detected