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 8fdb9c00 Document adding org.apache.commons.configuration2.AbstractHierarchicalConfiguration.getKeysInternal(String, String) 8fdb9c00 is described below commit 8fdb9c00e1a7b596717ef9698d2a4e61dba72402 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Apr 20 10:35:59 2025 -0400 Document adding org.apache.commons.configuration2.AbstractHierarchicalConfiguration.getKeysInternal(String, String) --- src/changes/changes.xml | 1 + .../apache/commons/configuration2/AbstractHierarchicalConfiguration.java | 1 + 2 files changed, 2 insertions(+) diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 61a0971f..53fa6cc1 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -40,6 +40,7 @@ <action type="add" issue="CONFIGURATION-836" dev="ebourg" due-to="Emmanuel Bourg">Add org.apache.commons.configuration2.web.JakartaServletContextConfiguration.</action> <action type="add" issue="CONFIGURATION-836" dev="ebourg" due-to="Emmanuel Bourg">Add org.apache.commons.configuration2.web.JakartaServletFilterConfiguration.</action> <action type="add" issue="CONFIGURATION-836" dev="ebourg" due-to="Emmanuel Bourg">Add org.apache.commons.configuration2.web.JakartaServletRequestConfiguration.</action> + <action type="add" dev="ggregory" due-to="Gary Gregory">Add org.apache.commons.configuration2.AbstractHierarchicalConfiguration.getKeysInternal(String, String).</action> <!-- UPDATE --> <action type="update" dev="ggregory" due-to="Gary Gregory, Dependabot">Bump org.apache.commons:commons-parent from 70 to 81 #434, #453, #466, #470, #479, #486, #491, #499, #537.</action> <action type="update" dev="ggregory" due-to="Gary Gregory, Dependabot">Bump commons-logging:commons-logging from 1.3.2 to 1.3.5 #442, #467.</action> diff --git a/src/main/java/org/apache/commons/configuration2/AbstractHierarchicalConfiguration.java b/src/main/java/org/apache/commons/configuration2/AbstractHierarchicalConfiguration.java index a56be2aa..64f69c7a 100644 --- a/src/main/java/org/apache/commons/configuration2/AbstractHierarchicalConfiguration.java +++ b/src/main/java/org/apache/commons/configuration2/AbstractHierarchicalConfiguration.java @@ -513,6 +513,7 @@ public abstract class AbstractHierarchicalConfiguration<T> extends AbstractConfi * @param prefix the prefix of the keys to start with * @param delimiter TODO * @return an iterator with the found keys + * @since 2.12.0 */ @Override protected Iterator<String> getKeysInternal(final String prefix, final String delimiter) {