cmlenz 2003/03/17 05:08:42
Modified: integration/ant/src/java/org/apache/cactus/integration/ant/webxml
WebXml.java
Log:
Remove tabs introduced by the Eclipse refactoring tools (arg!)
Revision Changes Path
1.5 +25 -25
jakarta-cactus/integration/ant/src/java/org/apache/cactus/integration/ant/webxml/WebXml.java
Index: WebXml.java
===================================================================
RCS file:
/home/cvs/jakarta-cactus/integration/ant/src/java/org/apache/cactus/integration/ant/webxml/WebXml.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- WebXml.java 17 Mar 2003 10:05:44 -0000 1.4
+++ WebXml.java 17 Mar 2003 13:08:42 -0000 1.5
@@ -233,12 +233,12 @@
throw new IllegalStateException("Filter '" + theFilterName +
"' not defined");
}
- Element initParamElement =
- this.document.createElement(WebXmlTag.INIT_PARAM.getTagName());
- initParamElement.appendChild(
- createNestedText(WebXmlTag.PARAM_NAME, theParamName));
- initParamElement.appendChild(
- createNestedText(WebXmlTag.PARAM_VALUE, theParamValue));
+ Element initParamElement =
+ this.document.createElement(WebXmlTag.INIT_PARAM.getTagName());
+ initParamElement.appendChild(
+ createNestedText(WebXmlTag.PARAM_NAME, theParamName));
+ initParamElement.appendChild(
+ createNestedText(WebXmlTag.PARAM_VALUE, theParamValue));
filterElement.appendChild(initParamElement);
}
@@ -255,12 +255,12 @@
throw new IllegalStateException("Filter '" + theFilterName +
"' not defined");
}
- Element filterMappingElement =
- this.document.createElement(WebXmlTag.FILTER_MAPPING.getTagName());
- filterMappingElement.appendChild(
- createNestedText(WebXmlTag.FILTER_NAME, theFilterName));
- filterMappingElement.appendChild(
- createNestedText(WebXmlTag.URL_PATTERN, theUrlPattern));
+ Element filterMappingElement =
+ this.document.createElement(WebXmlTag.FILTER_MAPPING.getTagName());
+ filterMappingElement.appendChild(
+ createNestedText(WebXmlTag.FILTER_NAME, theFilterName));
+ filterMappingElement.appendChild(
+ createNestedText(WebXmlTag.URL_PATTERN, theUrlPattern));
addElement(WebXmlTag.FILTER_MAPPING, filterMappingElement);
}
@@ -473,12 +473,12 @@
throw new IllegalStateException("Servlet '" + theServletName +
"' not defined");
}
- Element initParamElement =
- this.document.createElement(WebXmlTag.INIT_PARAM.getTagName());
- initParamElement.appendChild(
- createNestedText(WebXmlTag.PARAM_NAME, theParamName));
- initParamElement.appendChild(
- createNestedText(WebXmlTag.PARAM_VALUE, theParamValue));
+ Element initParamElement =
+ this.document.createElement(WebXmlTag.INIT_PARAM.getTagName());
+ initParamElement.appendChild(
+ createNestedText(WebXmlTag.PARAM_NAME, theParamName));
+ initParamElement.appendChild(
+ createNestedText(WebXmlTag.PARAM_VALUE, theParamValue));
servletElement.appendChild(initParamElement);
}
@@ -495,12 +495,12 @@
throw new IllegalStateException("Servlet '" + theServletName +
"' not defined");
}
- Element servletMappingElement =
-
this.document.createElement(WebXmlTag.SERVLET_MAPPING.getTagName());
- servletMappingElement.appendChild(
- createNestedText(WebXmlTag.SERVLET_NAME, theServletName));
- servletMappingElement.appendChild(
- createNestedText(WebXmlTag.URL_PATTERN, theUrlPattern));
+ Element servletMappingElement =
+ this.document.createElement(WebXmlTag.SERVLET_MAPPING.getTagName());
+ servletMappingElement.appendChild(
+ createNestedText(WebXmlTag.SERVLET_NAME, theServletName));
+ servletMappingElement.appendChild(
+ createNestedText(WebXmlTag.URL_PATTERN, theUrlPattern));
addElement(WebXmlTag.SERVLET_MAPPING, servletMappingElement);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]