diff options
author | Elliott Hughes <enh@google.com> | 2010-05-13 12:36:25 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2010-05-13 12:49:12 -0700 |
commit | f33eae7e84eb6d3b0f4e86b59605bb3de73009f3 (patch) | |
tree | f6cb62c04ce2669d2fa4715fbab86d38c8fca06d /luni/src/main/java/javax/xml/XMLConstants.java | |
parent | d21d78fd49a2d798218e8c8aefbddb26a0e71bbb (diff) | |
download | libcore-f33eae7e84eb6d3b0f4e86b59605bb3de73009f3.zip libcore-f33eae7e84eb6d3b0f4e86b59605bb3de73009f3.tar.gz libcore-f33eae7e84eb6d3b0f4e86b59605bb3de73009f3.tar.bz2 |
Remove all trailing whitespace from the dalvik team-maintained parts of libcore.
Gentlemen, you may now set your editors to "strip trailing whitespace"...
Change-Id: I85b2f6c80e5fbef1af6cab11789790b078c11b1b
Diffstat (limited to 'luni/src/main/java/javax/xml/XMLConstants.java')
-rw-r--r-- | luni/src/main/java/javax/xml/XMLConstants.java | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/luni/src/main/java/javax/xml/XMLConstants.java b/luni/src/main/java/javax/xml/XMLConstants.java index f65a6f3..dd3c515 100644 --- a/luni/src/main/java/javax/xml/XMLConstants.java +++ b/luni/src/main/java/javax/xml/XMLConstants.java @@ -114,9 +114,9 @@ public final class XMLConstants { /** * <p>W3C XML Schema Namespace URI.</p> - * + * * <p>Defined to be "<code>http://www.w3.org/2001/XMLSchema</code>". - * + * * @see <a href="http://www.w3.org/TR/xmlschema-1/#Instance_Document_Constructions"> * XML Schema Part 1: * Structures, 2.6 Schema-Related Markup in Documents Being Validated</a> @@ -126,9 +126,9 @@ public final class XMLConstants { /** * <p>W3C XML Schema Instance Namespace URI.</p> - * + * * <p>Defined to be "<code>http://www.w3.org/2001/XMLSchema-instance</code>".</p> - * + * * @see <a href="http://www.w3.org/TR/xmlschema-1/#Instance_Document_Constructions"> * XML Schema Part 1: * Structures, 2.6 Schema-Related Markup in Documents Being Validated</a> @@ -138,32 +138,32 @@ public final class XMLConstants { /** * <p>W3C XPath Datatype Namespace URI.</p> - * + * * <p>Defined to be "<code>http://www.w3.org/2003/11/xpath-datatypes</code>".</p> - * + * * @see <a href="http://www.w3.org/TR/xpath-datamodel">XQuery 1.0 and XPath 2.0 Data Model</a> */ public static final String W3C_XPATH_DATATYPE_NS_URI = "http://www.w3.org/2003/11/xpath-datatypes"; /** * <p>XML Document Type Declaration Namespace URI as an arbitrary value.</p> - * + * * <p>Since not formally defined by any existing standard, arbitrarily define to be "<code>http://www.w3.org/TR/REC-xml</code>". */ public static final String XML_DTD_NS_URI = "http://www.w3.org/TR/REC-xml"; /** * <p>RELAX NG Namespace URI.</p> - * + * * <p>Defined to be "<code>http://relaxng.org/ns/structure/1.0</code>".</p> - * + * * @see <a href="http://relaxng.org/spec-20011203.html">RELAX NG Specification</a> */ public static final String RELAXNG_NS_URI = "http://relaxng.org/ns/structure/1.0"; /** * <p>Feature for secure processing.</p> - * + * * <ul> * <li> * <code>true</code> instructs the implementation to process XML securely. @@ -174,6 +174,6 @@ public final class XMLConstants { * ignoring security issues such as limits on XML constructs to avoid conditions such as denial of service attacks. * </li> * </ul> - */ + */ public static final String FEATURE_SECURE_PROCESSING = "http://javax.xml.XMLConstants/feature/secure-processing"; } |