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

commit ec4483074c0be014ff60bca9f39f6b6fcb2b48ad
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu May 23 09:19:36 2024 -0400

    Javadoc
---
 src/main/java/org/apache/commons/codec/digest/Blake3.java | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/apache/commons/codec/digest/Blake3.java 
b/src/main/java/org/apache/commons/codec/digest/Blake3.java
index ba6cceed..032ce0ff 100644
--- a/src/main/java/org/apache/commons/codec/digest/Blake3.java
+++ b/src/main/java/org/apache/commons/codec/digest/Blake3.java
@@ -455,7 +455,7 @@ public final class Blake3 {
      * previously finalized bytes. Note that this can finalize up to 
2<sup>64</sup> bytes per instance.
      *
      * @param out destination array to finalize bytes into
-     * @return this
+     * @return {@code this} instance.
      * @throws NullPointerException if out is null
      */
     public Blake3 doFinalize(final byte[] out) {
@@ -469,7 +469,7 @@ public final class Blake3 {
      * @param out    destination array to finalize bytes into
      * @param offset where in the array to begin writing bytes to
      * @param length number of bytes to finalize
-     * @return this
+     * @return {@code this} instance.
      * @throws NullPointerException      if out is null
      * @throws IndexOutOfBoundsException if offset or length are negative or 
if offset + length is greater than the
      *                                   length of the provided array
@@ -498,7 +498,7 @@ public final class Blake3 {
 
     /**
      * Resets this instance back to its initial state when it was first 
constructed.
-     * @return this
+     * @return {@code this} instance.
      */
     public Blake3 reset() {
         engineState.reset();
@@ -509,7 +509,7 @@ public final class Blake3 {
      * Updates this hash state using the provided bytes.
      *
      * @param in source array to update data from
-     * @return this
+     * @return {@code this} instance.
      * @throws NullPointerException if in is null
      */
     public Blake3 update(final byte[] in) {
@@ -522,7 +522,7 @@ public final class Blake3 {
      * @param in     source array to update data from
      * @param offset where in the array to begin reading bytes
      * @param length number of bytes to update
-     * @return this
+     * @return {@code this} instance.
      * @throws NullPointerException      if in is null
      * @throws IndexOutOfBoundsException if offset or length are negative or 
if offset + length is greater than the
      *                                   length of the provided array

Reply via email to