CVS Update: xmlpull-api-v1/src/java/api/org/xmlpull/v1
Aleksander Andrzej Slominski <[email protected]>
| Newsgroups | gmane.text.xml.xmlpull.devel |
|---|---|
| Message-ID | <[email protected]> |
aslom 02/08/14 15:28:35
Modified: src/java/api/org/xmlpull/v1 XmlSerializer.java
Log:
removed feature that is optional so not neede as String constant in XmlSerializer interface
Revision Changes Path
1.5 +0 -16 xmlpull-api-v1/src/java/api/org/xmlpull/v1/XmlSerializer.java
Index: XmlSerializer.java
===================================================================
RCS file: /l/extreme/cvspub/xmlpull-api-v1/src/java/api/org/xmlpull/v1/XmlSerializer.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -t -w -r1.4 -r1.5
--- XmlSerializer.java 2002/08/14 13:44:47 1.4
+++ XmlSerializer.java 2002/08/14 20:28:35 1.5
@@ -15,22 +15,6 @@
*/
public interface XmlSerializer {
- /**
- * FEATURE: disable or enable serializer output indentation
- * for elements on that on or below current depth
- * (as defined by matching endTag() to current in-scope startTag()).
- * If supported in the implementation then this featue MUST be scoped
- * depending on startTag() and endTag() scope.
- *
- * <p><strong>NOTE:</strong> can be changed during parsing!
- * <p><strong>NOTE:</strong> may be ignored by serializers
- * (for example when serializer produces binary XML output like WBXML)
- *
- * @see #getFeature
- * @see #setFeature
- */
- public static final String FEATURE_INDENT_OUTPUT =
- "http://xmlpull.org/v1/doc/features.html#indent-output";
/**
* Set feature identified by name (recommended to be URI for uniqueness).