Author: oheger Date: Sat May 16 17:32:54 2015 New Revision: 1679750 URL: http://svn.apache.org/r1679750 Log: Javadoc errors: Bad use of '>'.
Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/XMLPropertiesConfiguration.java commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/plist/XMLPropertyListConfiguration.java Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/XMLPropertiesConfiguration.java URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/XMLPropertiesConfiguration.java?rev=1679750&r1=1679749&r2=1679750&view=diff ============================================================================== --- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/XMLPropertiesConfiguration.java (original) +++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/XMLPropertiesConfiguration.java Sat May 16 17:32:54 2015 @@ -17,15 +17,14 @@ package org.apache.commons.configuration2; +import javax.xml.parsers.SAXParser; +import javax.xml.parsers.SAXParserFactory; import java.io.PrintWriter; import java.io.Reader; import java.io.Writer; import java.util.Iterator; import java.util.List; -import javax.xml.parsers.SAXParser; -import javax.xml.parsers.SAXParserFactory; - import org.apache.commons.configuration2.convert.ListDelimiterHandler; import org.apache.commons.configuration2.ex.ConfigurationException; import org.apache.commons.configuration2.io.FileLocator; @@ -47,14 +46,14 @@ import org.xml.sax.helpers.DefaultHandle * An XML properties file looks like this: * * <pre> - * <?xml version="1.0"?> - * <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> - * <properties> - * <comment>Description of the property list</comment> - * <entry key="key1">value1</entry> - * <entry key="key2">value2</entry> - * <entry key="key3">value3</entry> - * </properties> + * <?xml version="1.0"?> + * <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> + * <properties> + * <comment>Description of the property list</comment> + * <entry key="key1">value1</entry> + * <entry key="key2">value2</entry> + * <entry key="key3">value3</entry> + * </properties> * </pre> * * The Java 5.0 runtime is not required to use this class. The default encoding Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/plist/XMLPropertyListConfiguration.java URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/plist/XMLPropertyListConfiguration.java?rev=1679750&r1=1679749&r2=1679750&view=diff ============================================================================== --- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/plist/XMLPropertyListConfiguration.java (original) +++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/plist/XMLPropertyListConfiguration.java Sat May 16 17:32:54 2015 @@ -66,59 +66,59 @@ import org.xml.sax.helpers.DefaultHandle * * <p>Example:</p> * <pre> - * <?xml version="1.0"?> - * <!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd"> - * <plist version="1.0"> - * <dict> - * <key>string</key> - * <string>value1</string> - * - * <key>integer</key> - * <integer>12345</integer> - * - * <key>real</key> - * <real>-123.45E-1</real> - * - * <key>boolean</key> - * <true/> - * - * <key>date</key> - * <date>2005-01-01T12:00:00Z</date> - * - * <key>data</key> - * <data>RHJhY28gRG9ybWllbnMgTnVucXVhbSBUaXRpbGxhbmR1cw==</data> - * - * <key>array</key> - * <array> - * <string>value1</string> - * <string>value2</string> - * <string>value3</string> - * </array> - * - * <key>dictionnary</key> - * <dict> - * <key>key1</key> - * <string>value1</string> - * <key>key2</key> - * <string>value2</string> - * <key>key3</key> - * <string>value3</string> - * </dict> - * - * <key>nested</key> - * <dict> - * <key>node1</key> - * <dict> - * <key>node2</key> - * <dict> - * <key>node3</key> - * <string>value</string> - * </dict> - * </dict> - * </dict> + * <?xml version="1.0"?> + * <!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd"> + * <plist version="1.0"> + * <dict> + * <key>string</key> + * <string>value1</string> + * + * <key>integer</key> + * <integer>12345</integer> + * + * <key>real</key> + * <real>-123.45E-1</real> + * + * <key>boolean</key> + * <true/> + * + * <key>date</key> + * <date>2005-01-01T12:00:00Z</date> + * + * <key>data</key> + * <data>RHJhY28gRG9ybWllbnMgTnVucXVhbSBUaXRpbGxhbmR1cw==</data> + * + * <key>array</key> + * <array> + * <string>value1</string> + * <string>value2</string> + * <string>value3</string> + * </array> + * + * <key>dictionnary</key> + * <dict> + * <key>key1</key> + * <string>value1</string> + * <key>key2</key> + * <string>value2</string> + * <key>key3</key> + * <string>value3</string> + * </dict> + * + * <key>nested</key> + * <dict> + * <key>node1</key> + * <dict> + * <key>node2</key> + * <dict> + * <key>node3</key> + * <string>value</string> + * </dict> + * </dict> + * </dict> * - * </dict> - * </plist> + * </dict> + * </plist> * </pre> * * @since 1.2