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 0b90200 Fix Javadoc for org.apache.commons.configuration2.PropertiesConfiguration.getIncludeOptional(). 0b90200 is described below commit 0b90200cabcc7d3a8b42dbf656c75a1ef8c52927 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Thu Jul 18 09:16:09 2019 -0400 Fix Javadoc for org.apache.commons.configuration2.PropertiesConfiguration.getIncludeOptional(). --- src/changes/changes.xml | 3 +++ .../org/apache/commons/configuration2/PropertiesConfiguration.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/changes/changes.xml b/src/changes/changes.xml index eddbe82..80a9197 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -36,6 +36,9 @@ <action dev="ggregory" type="update" issue="CONFIGURATION-752" due-to="Gary Gregory"> Update Apache Commons VFS from 2.3 to 2.4. </action> + <action dev="ggregory" type="update" due-to="Gary Gregory"> + Fix Javadoc for org.apache.commons.configuration2.PropertiesConfiguration.getIncludeOptional(). + </action> </release> <release version="2.5" date="2019-05-23" description="Minor release with new features and updated dependencies."> diff --git a/src/main/java/org/apache/commons/configuration2/PropertiesConfiguration.java b/src/main/java/org/apache/commons/configuration2/PropertiesConfiguration.java index f0a13c6..80efad2 100644 --- a/src/main/java/org/apache/commons/configuration2/PropertiesConfiguration.java +++ b/src/main/java/org/apache/commons/configuration2/PropertiesConfiguration.java @@ -302,7 +302,7 @@ public class PropertiesConfiguration extends BaseConfiguration /** * Gets the property value for including other properties files. - * By default it is "include". + * By default it is "includeoptional". * <p> * If the file is absent, processing continues normally. * </p>