This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-configuration.git
The following commit(s) were added to refs/heads/master by this push: new c0267e80 Javadoc c0267e80 is described below commit c0267e809e5b379b8e220610c1dab04238843f17 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Dec 17 14:31:15 2023 -0500 Javadoc --- src/main/java/org/apache/commons/configuration2/MapConfiguration.java | 4 ++-- .../org/apache/commons/configuration2/PropertiesConfiguration.java | 2 +- .../commons/configuration2/convert/DefaultConversionHandler.java | 2 +- .../apache/commons/configuration2/convert/ListDelimiterHandler.java | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/apache/commons/configuration2/MapConfiguration.java b/src/main/java/org/apache/commons/configuration2/MapConfiguration.java index faf844cc..5d0f5d55 100644 --- a/src/main/java/org/apache/commons/configuration2/MapConfiguration.java +++ b/src/main/java/org/apache/commons/configuration2/MapConfiguration.java @@ -31,14 +31,14 @@ import org.apache.commons.configuration2.ex.ConfigurationRuntimeException; * A Map based Configuration. * </p> * <p> - * This implementation of the {@code Configuration} interface is initialized with a {@code java.util.Map}. The methods + * This implementation of the {@code Configuration} interface is initialized with a {@link java.util.Map}. The methods * of the {@code Configuration} interface are implemented on top of the content of this map. The following storage * scheme is used: * </p> * <p> * Property keys are directly mapped to map keys, i.e. the {@code getProperty()} method directly performs a * {@code get()} on the map. Analogously, {@code setProperty()} or {@code addProperty()} operations write new data into - * the map. If a value is added to an existing property, a {@code java.util.List} is created, which stores the values of + * the map. If a value is added to an existing property, a {@link java.util.List} is created, which stores the values of * this property. * </p> * <p> diff --git a/src/main/java/org/apache/commons/configuration2/PropertiesConfiguration.java b/src/main/java/org/apache/commons/configuration2/PropertiesConfiguration.java index 7f843a0e..7df8c981 100644 --- a/src/main/java/org/apache/commons/configuration2/PropertiesConfiguration.java +++ b/src/main/java/org/apache/commons/configuration2/PropertiesConfiguration.java @@ -1005,7 +1005,7 @@ public class PropertiesConfiguration extends BaseConfiguration implements FileBa /** * A string with special characters that need to be unescaped when reading a properties file. - * {@code java.util.Properties} escapes these characters when writing out a properties file. + * {@link java.util.Properties} escapes these characters when writing out a properties file. */ private static final String UNESCAPE_CHARACTERS = ":#=!\\\'\""; diff --git a/src/main/java/org/apache/commons/configuration2/convert/DefaultConversionHandler.java b/src/main/java/org/apache/commons/configuration2/convert/DefaultConversionHandler.java index d56ca0a7..7f53a429 100644 --- a/src/main/java/org/apache/commons/configuration2/convert/DefaultConversionHandler.java +++ b/src/main/java/org/apache/commons/configuration2/convert/DefaultConversionHandler.java @@ -233,7 +233,7 @@ public class DefaultConversionHandler implements ConversionHandler { /** * Sets the date format to be used by this conversion handler. This format is applied by conversions to {@code Date} or - * {@code Calendar} objects. The string is passed to the {@code java.text.SimpleDateFormat} class, so it must be + * {@code Calendar} objects. The string is passed to the {@link java.text.SimpleDateFormat} class, so it must be * compatible with this class. If no date format has been set, a default format is used. * * @param dateFormat the date format string diff --git a/src/main/java/org/apache/commons/configuration2/convert/ListDelimiterHandler.java b/src/main/java/org/apache/commons/configuration2/convert/ListDelimiterHandler.java index 090587cb..9ddd57e8 100644 --- a/src/main/java/org/apache/commons/configuration2/convert/ListDelimiterHandler.java +++ b/src/main/java/org/apache/commons/configuration2/convert/ListDelimiterHandler.java @@ -30,7 +30,7 @@ import java.util.List; * {@link org.apache.commons.configuration2.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.configuration2.PropertiesConfiguration PropertiesConfiguration}: - * properties files that have to be compatible with the {@code java.util.Properties} class cannot have multiple + * properties files that have to be compatible with the {@link 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>