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-text.git
The following commit(s) were added to refs/heads/master by this push: new e84e0504 Javadoc: Remove redundant "java.lang" prefix e84e0504 is described below commit e84e05042ecc3e6e87dc218f4f38ecebf9e266bd Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Dec 9 10:10:06 2023 -0500 Javadoc: Remove redundant "java.lang" prefix --- src/main/java/org/apache/commons/text/StringEscapeUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/text/StringEscapeUtils.java b/src/main/java/org/apache/commons/text/StringEscapeUtils.java index ceed7b87..347cd5fa 100644 --- a/src/main/java/org/apache/commons/text/StringEscapeUtils.java +++ b/src/main/java/org/apache/commons/text/StringEscapeUtils.java @@ -703,7 +703,7 @@ public class StringEscapeUtils { * Escapes the characters in a {@code String} using XSI rules. * * <p><b>Beware!</b> In most cases you don't want to escape shell commands but use multi-argument - * methods provided by {@link ProcessBuilder} or {@link java.lang.Runtime#exec(String[])} + * methods provided by {@link ProcessBuilder} or {@link Runtime#exec(String[])} * instead.</p> * * <p>Example:</p>