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 126acfaf Javadoc
126acfaf is described below

commit 126acfaff4fd05621a1ec4d361ec25c5012afd40
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Apr 12 08:43:28 2026 -0400

    Javadoc
---
 src/main/java/org/apache/commons/codec/digest/GitIdentifiers.java | 6 +++---
 1 file changed, 3 insertions(+), 3 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 62811a1d..4dbfca26 100644
--- a/src/main/java/org/apache/commons/codec/digest/GitIdentifiers.java
+++ b/src/main/java/org/apache/commons/codec/digest/GitIdentifiers.java
@@ -89,9 +89,9 @@ public class GitIdentifiers {
         /**
          * Constructs a new entry.
          *
-         * @param name The name of the entry.
-         * @param type The type of the entry.
-         * @param rawObjectId The id of the entry.
+         * @param name The name of the entry, not containing {@code '/'}.
+         * @param type The type of the entry, not null.
+         * @param rawObjectId The id of the entry, not null.
          */
         DirectoryEntry(final String name, final FileMode type, final byte[] 
rawObjectId) {
             if (Objects.requireNonNull(name).indexOf('/') >= 0) {

Reply via email to