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:45:33 UTC

svn commit: r1679782 - /commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/convert/ListDelimiterHandler.java

Author: oheger
Date: Sat May 16 17:45:33 2015
New Revision: 1679782

URL: http://svn.apache.org/r1679782
Log:
Javadoc error: Unexpected end tag.

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

Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/convert/ListDelimiterHandler.java
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/convert/ListDelimiterHandler.java?rev=1679782&r1=1679781&r2=1679782&view=diff
==============================================================================
--- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/convert/ListDelimiterHandler.java (original)
+++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/convert/ListDelimiterHandler.java Sat May 16 17:45:33 2015
@@ -34,11 +34,13 @@ import java.util.List;
  * the {@code java.util.Properties} class cannot have multiple occurrences of a
  * single property key, therefore a different storage scheme for multi-valued
  * properties is needed. A possible storage scheme could look as follows:
+ * </p>
  *
  * <pre>
  * myProperty=value1,value2,value3
  * </pre>
  *
+ * <p>
  * Here a comma is used as list delimiter. When parsing this property (and using
  * a corresponding {@code ListDelimiterHandler} implementation) the string value
  * is split, and three values are added for the property key.