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 dc50853f Fix URL dc50853f is described below commit dc50853f1fbd291fd1fca0d106345004166b6d43 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Jul 29 07:46:56 2024 -0400 Fix URL --- .../org/apache/commons/configuration2/interpol/ConstantLookup.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/configuration2/interpol/ConstantLookup.java b/src/main/java/org/apache/commons/configuration2/interpol/ConstantLookup.java index 81cd1e6f..b2289588 100644 --- a/src/main/java/org/apache/commons/configuration2/interpol/ConstantLookup.java +++ b/src/main/java/org/apache/commons/configuration2/interpol/ConstantLookup.java @@ -61,8 +61,8 @@ public class ConstantLookup implements Lookup { /** * Loads the class with the specified name. If an application has special needs regarding the class loaders to be used, * it can hook in here. This implementation delegates to the {@code getClass()} method of Commons Lang's - * <code><a href="https://commons.apache.org/lang/api-release/org/apache/commons/lang/ClassUtils.html"> - * ClassUtils</a></code>. + * <a href="https://commons.apache.org/lang/api-release/org/apache/commons/lang/ClassUtils.html"> + * ClassUtils</a>. * * @param className the name of the class to be loaded * @return the corresponding class object