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-jcs.git
The following commit(s) were added to refs/heads/master by this push: new 4ec93e8e Remove author non-Javadoc "tag" per strong recommendation from the board new 0ee5e9df Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-jcs.git 4ec93e8e is described below commit 4ec93e8e5f99296f13589f3e5e9023365f99e675 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Nov 15 11:24:08 2024 -0500 Remove author non-Javadoc "tag" per strong recommendation from the board --- .../java/org/apache/commons/jcs3/utils/config/OptionConverter.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/utils/config/OptionConverter.java b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/utils/config/OptionConverter.java index bce0504e..5cc1c27c 100644 --- a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/utils/config/OptionConverter.java +++ b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/utils/config/OptionConverter.java @@ -235,7 +235,7 @@ public class OptionConverter * Perform variable substitution in string <code>val</code> from the values of keys found in the * system properties. * - * The variable substitution delimiters are <b>${ </b> and <b>} </b>. + * The variable substitution delimiters are <strong>${ </strong> and <strong>} </strong>. * * For example, if the System properties contains "key=value", then the call * @@ -260,15 +260,11 @@ public class OptionConverter * An {@link IllegalArgumentException}is thrown if <code>val</code> contains a start * delimiter "${" which is not balanced by a stop delimiter "}". * </p> - * <p> - * <b>Author </b> Avy Sharell - * </p> * @param val The string on which variable substitution is performed. * @param props * @return String * @throws IllegalArgumentException if <code>val</code> is malformed. */ - public static String substVars( final String val, final Properties props ) throws IllegalArgumentException {