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 33c47a0 Update Javadoc since tags. 33c47a0 is described below commit 33c47a0038324892446de0cc2ebd58575217a7dc Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Aug 25 11:15:13 2021 -0400 Update Javadoc since tags. --- .../org/apache/commons/configuration2/ImmutableConfiguration.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/configuration2/ImmutableConfiguration.java b/src/main/java/org/apache/commons/configuration2/ImmutableConfiguration.java index ba371d0..1ba0052 100644 --- a/src/main/java/org/apache/commons/configuration2/ImmutableConfiguration.java +++ b/src/main/java/org/apache/commons/configuration2/ImmutableConfiguration.java @@ -343,7 +343,7 @@ public interface ImmutableConfiguration { * * @throws org.apache.commons.configuration2.ex.ConversionException is thrown if the key maps to an object that is not a * String. - * @since 2.8 + * @since 2.8.0 */ default <T extends Enum<T>> T getEnum(final String key, final Class<T> enumType) { try { @@ -365,7 +365,7 @@ public interface ImmutableConfiguration { * * @throws org.apache.commons.configuration2.ex.ConversionException is thrown if the key maps to an object that is not a * Enum. - * @since 2.8 + * @since 2.8.0 */ default <T extends Enum<T>> T getEnum(final String key, final Class<T> enumType, final T defaultValue) { final String strValue = getString(key, null);