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 4a6ba6da Javadoc 4a6ba6da is described below commit 4a6ba6dae26b43b71410ea655f94f272d30c0e59 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue May 7 10:07:48 2024 -0400 Javadoc --- .../builder/combined/CombinedConfigurationBuilder.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/configuration2/builder/combined/CombinedConfigurationBuilder.java b/src/main/java/org/apache/commons/configuration2/builder/combined/CombinedConfigurationBuilder.java index dd576798..e80e3b1a 100644 --- a/src/main/java/org/apache/commons/configuration2/builder/combined/CombinedConfigurationBuilder.java +++ b/src/main/java/org/apache/commons/configuration2/builder/combined/CombinedConfigurationBuilder.java @@ -286,10 +286,11 @@ public class CombinedConfigurationBuilder extends BasicConfigurationBuilder<Comb * Processes the declaration of configuration builder providers, creates the corresponding builder if necessary, obtains * configurations, and adds them to the specified result configuration. * - * @param ccResult the result configuration - * @param srcDecl the collection with the declarations of configuration sources to process - * @return a list with configuration builders - * @throws ConfigurationException if an error occurs + * @param ccResult the result configuration. + * @param srcDecl the collection with the declarations of configuration sources to process. + * @param builders List of configuration builders. + * @return a list with configuration builders. + * @throws ConfigurationException if an error occurs. */ public List<ConfigurationBuilder<? extends Configuration>> createAndAddConfigurations(final CombinedConfiguration ccResult, final List<ConfigurationDeclaration> srcDecl, final List<ConfigurationBuilder<? extends Configuration>> builders) throws ConfigurationException {