()
| 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. |
no test coverage detected