You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by oh...@apache.org on 2015/05/16 19:37:26 UTC

svn commit: r1679762 - /commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/INIConfiguration.java

Author: oheger
Date: Sat May 16 17:37:25 2015
New Revision: 1679762

URL: http://svn.apache.org/r1679762
Log:
Javadoc errors: Incorrect nesting of <p> tags.

Modified:
    commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/INIConfiguration.java

Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/INIConfiguration.java
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/INIConfiguration.java?rev=1679762&r1=1679761&r2=1679762&view=diff
==============================================================================
--- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/INIConfiguration.java (original)
+++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/INIConfiguration.java Sat May 16 17:37:25 2015
@@ -70,7 +70,7 @@ import org.apache.commons.configuration2
  * </pre>
  * <p>
  * The format of ini files is fairly straight forward and is composed of three
- * components:<br>
+ * components:</p>
  * <ul>
  * <li><b>Sections:</b> Ini files are split into sections, each section starting
  * with a section declaration. A section declaration starts with a '[' and ends
@@ -79,7 +79,6 @@ import org.apache.commons.configuration2
  * have a typical {@code key = value} format.</li>
  * <li><b>Comments:</b> Lines starting with a ';' are assumed to be comments.</li>
  * </ul>
- * </p>
  * <p>
  * There are various implementations of the ini file format by various vendors
  * which has caused a number of differences to appear. As far as possible this
@@ -87,6 +86,7 @@ import org.apache.commons.configuration2
  * </p>
  * <p>
  * Some of the differences supported are as follows:
+ * </p>
  * <ul>
  * <li><b>Comments:</b> The '#' character is also accepted as a comment
  * signifier.</li>
@@ -103,7 +103,6 @@ import org.apache.commons.configuration2
  * sections; this configuration simply merges duplicates; if a section has a
  * duplicate parameter the values are then added to the key as a list.</li>
  * </ul>
- * </p>
  * <p>
  * Global parameters are also allowed; any parameters declared before a section
  * is declared are added to a global section. It is important to note that this
@@ -116,8 +115,7 @@ import org.apache.commons.configuration2
  * behavior. Because this is a hierarchical configuration you can change this by
  * setting a different {@link org.apache.commons.configuration2.tree.ExpressionEngine}.)
  * </p>
- * <p>
- * <h3>Implementation Details:</h3> Consider the following ini file:<br>
+ * <h3>Implementation Details:</h3> Consider the following ini file:
  * <pre>
  *  default = ok
  *
@@ -147,9 +145,8 @@ import org.apache.commons.configuration2
  *  passwd : abc=def
  *  a:b = "value"
  *  </pre>
- * </p>
  * <p>
- * This ini file will be parsed without error. Note:
+ * This ini file will be parsed without error. Note:</p>
  * <ul>
  * <li>The parameter named "default" is added to the global section, it's value
  * is accessed simply using {@code getProperty("default")}.</li>
@@ -173,15 +170,15 @@ import org.apache.commons.configuration2
  * character is used as separator. Thus the second property definition in the
  * section has the key {@code a:b} and the value {@code value}.</li>
  * </ul>
- * </p>
  * <p>
  * Internally, this configuration maps the content of the represented ini file
- * to its node structure in the following way:
+ * to its node structure in the following way:</p>
  * <ul>
  * <li>Sections are represented by direct child nodes of the root node.</li>
  * <li>For the content of a section, corresponding nodes are created as children
  * of the section node.</li>
  * </ul>
+ * <p>
  * This explains how the keys for the properties can be constructed. You can
  * also use other methods of {@link HierarchicalConfiguration} for querying or
  * manipulating the hierarchy of configuration nodes, for instance the