You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/06/17 20:12:44 UTC

[commons-codec] branch master updated: New package private method does not need Javadoc since tag

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-codec.git


The following commit(s) were added to refs/heads/master by this push:
     new af4d48a4 New package private method does not need Javadoc since tag
af4d48a4 is described below

commit af4d48a43079124191af51bd9f5273c196a06fb5
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Jun 17 16:12:40 2023 -0400

    New package private method does not need Javadoc since tag
---
 src/main/java/org/apache/commons/codec/language/SoundexUtils.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/codec/language/SoundexUtils.java b/src/main/java/org/apache/commons/codec/language/SoundexUtils.java
index b2b8e259..d7332a09 100644
--- a/src/main/java/org/apache/commons/codec/language/SoundexUtils.java
+++ b/src/main/java/org/apache/commons/codec/language/SoundexUtils.java
@@ -133,7 +133,6 @@ final class SoundexUtils {
      *
      * @param cs  the CharSequence to check, may be null
      * @return {@code true} if the CharSequence is empty or null
-     * @since 1.16
      */
     static boolean isEmpty(final CharSequence cs) {
         return cs == null || cs.length() == 0;