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

Method openWebxmlWriter

java/org/apache/jasper/JspC.java:1952–1960  ·  view source on GitHub ↗
(File file)

Source from the content-addressed store, hash-verified

1950 }
1951
1952 private Writer openWebxmlWriter(File file) throws IOException {
1953 FileOutputStream fos = new FileOutputStream(file);
1954 try {
1955 return webxmlEncoding != null ? new OutputStreamWriter(fos, webxmlEncoding) : new OutputStreamWriter(fos);
1956 } catch (IOException ioe) {
1957 fos.close();
1958 throw ioe;
1959 }
1960 }
1961
1962 @Override
1963 public String getUseNonstandardTagOptimizations() {

Callers 2

mergeIntoWebXmlMethod · 0.95
initWebXmlMethod · 0.95

Calls 1

closeMethod · 0.65

Tested by

no test coverage detected