sboag 00/10/31 09:08:37
Modified: java/src/org/apache/xalan/templates Stylesheet.java
Log:
Remove xml-space stuff, which is processed at the ElemTemplateElem level.
Attributed to Gary L Peskin <[EMAIL PROTECTED]>.
Revision Changes Path
1.10 +0 -27
xml-xalan/java/src/org/apache/xalan/templates/Stylesheet.java
Index: Stylesheet.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/templates/Stylesheet.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- Stylesheet.java 2000/10/30 18:50:05 1.9
+++ Stylesheet.java 2000/10/31 17:08:34 1.10
@@ -452,33 +452,6 @@
}
/**
- * The "xml:space" property.
- */
- private boolean m_XmlSpace;
-
- /**
- * Set the "xml:space" property.
- * @see <a href="http://www.w3.org/TR/xslt#strip">strip in XSLT
Specification</a>
- *
- * NEEDSDOC @param v
- */
- public void setXmlSpace(boolean v)
- {
- m_XmlSpace = v;
- }
-
- /**
- * Get the "xml:space" property.
- * @see <a href="http://www.w3.org/TR/xslt#strip">strip in XSLT
Specification</a>
- *
- * NEEDSDOC ($objectName$) @return
- */
- public boolean getXmlSpace()
- {
- return m_XmlSpace;
- }
-
- /**
* The "xsl:import" list.
*/
private Vector m_imports;