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 2014/01/01 17:46:27 UTC

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

Author: oheger
Date: Wed Jan  1 16:46:27 2014
New Revision: 1554638

URL: http://svn.apache.org/r1554638
Log:
Javadoc changes.

Removed imports to classes from top-level package which were just referenced by
{@link} tags.

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

Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/convert/ListDelimiterHandler.java
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/convert/ListDelimiterHandler.java?rev=1554638&r1=1554637&r2=1554638&view=diff
==============================================================================
--- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/convert/ListDelimiterHandler.java (original)
+++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/convert/ListDelimiterHandler.java Wed Jan  1 16:46:27 2014
@@ -20,23 +20,21 @@ import java.util.Collection;
 import java.util.Iterator;
 import java.util.List;
 
-import org.apache.commons.configuration.AbstractConfiguration;
-import org.apache.commons.configuration.PropertiesConfiguration;
-
 /**
  * <p>
  * Definition of an interface that controls the handling of list delimiters in
  * configuration properties.
  * </p>
  * <p>
- * {@link AbstractConfiguration} supports list delimiters in property values. If
- * such a delimiter is found, the value actually contains multiple values and
- * has to be split. This is useful for instance for
- * {@link PropertiesConfiguration}: properties files that have to be compatible
- * with 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:
+ * {@link org.apache.commons.configuration.AbstractConfiguration
+ * AbstractConfiguration} supports list delimiters in property values. If such a
+ * delimiter is found, the value actually contains multiple values and has to be
+ * split. This is useful for instance for
+ * {@link org.apache.commons.configuration.PropertiesConfiguration
+ * PropertiesConfiguration}: properties files that have to be compatible with
+ * 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:
  *
  * <pre>
  * myProperty=value1,value2,value3