This is an automated email from the ASF dual-hosted git repository.

pkarwasz pushed a commit to branch feat/git-identifiers
in repository https://gitbox.apache.org/repos/asf/commons-codec.git

commit 1d44d87388e9fab0cdba26557aee9b64de4567c0
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Thu Apr 9 14:03:19 2026 +0200

    fix: remove useless @since annotations
---
 src/main/java/org/apache/commons/codec/digest/GitIdentifiers.java | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/codec/digest/GitIdentifiers.java 
b/src/main/java/org/apache/commons/codec/digest/GitIdentifiers.java
index caeeeeaf..5a22760a 100644
--- a/src/main/java/org/apache/commons/codec/digest/GitIdentifiers.java
+++ b/src/main/java/org/apache/commons/codec/digest/GitIdentifiers.java
@@ -90,7 +90,6 @@ public class GitIdentifiers {
      * @param data          Path to the file to digest.
      * @return A generalized Git blob identifier.
      * @throws IOException On error accessing the file.
-     * @since 1.22.0
      */
     public static byte[] blobId(final MessageDigest messageDigest, final Path 
data) throws IOException {
         messageDigest.reset();
@@ -149,7 +148,6 @@ public class GitIdentifiers {
      * @param data          Path to the directory to digest.
      * @return A generalized Git tree identifier.
      * @throws IOException On error accessing the directory or its contents.
-     * @since 1.22.0
      */
     public static byte[] treeId(final MessageDigest messageDigest, final Path 
data) throws IOException {
         final List<GitDirectoryEntry> entries = new ArrayList<>();

Reply via email to