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-crypto.git
The following commit(s) were added to refs/heads/master by this push: new ed5bf813 No need for blank Javadoc lines between Javadoc @ tags ed5bf813 is described below commit ed5bf813c18be71e549f01fa8e29feb3b1c729dd Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Nov 28 12:29:38 2024 -0500 No need for blank Javadoc lines between Javadoc @ tags --- src/main/java/org/apache/commons/crypto/cipher/CryptoCipher.java | 2 -- src/main/java/org/apache/commons/crypto/cipher/JceCipher.java | 2 -- src/main/java/org/apache/commons/crypto/cipher/OpenSslCipher.java | 2 -- src/main/java/org/apache/commons/crypto/jna/LibreSsl20XNativeJna.java | 1 - src/main/java/org/apache/commons/crypto/jna/OpenSsl11XNativeJna.java | 1 - src/main/java/org/apache/commons/crypto/jna/OpenSsl30XNativeJna.java | 1 - src/main/java/org/apache/commons/crypto/jna/OpenSslJnaCipher.java | 2 -- src/main/java/org/apache/commons/crypto/stream/input/StreamInput.java | 1 - .../java/org/apache/commons/crypto/stream/output/ChannelOutput.java | 1 - src/main/java/org/apache/commons/crypto/stream/output/Output.java | 2 -- src/main/java/org/apache/commons/crypto/stream/output/StreamOutput.java | 1 - 11 files changed, 16 deletions(-) diff --git a/src/main/java/org/apache/commons/crypto/cipher/CryptoCipher.java b/src/main/java/org/apache/commons/crypto/cipher/CryptoCipher.java index b33ee577..d5b987d8 100644 --- a/src/main/java/org/apache/commons/crypto/cipher/CryptoCipher.java +++ b/src/main/java/org/apache/commons/crypto/cipher/CryptoCipher.java @@ -167,7 +167,6 @@ public interface CryptoCipher extends Closeable { * </p> * * @param aad the buffer containing the Additional Authentication Data - * * @throws IllegalArgumentException if the {@code aad} * byte array is null * @throws IllegalStateException if this cipher is in a wrong state @@ -195,7 +194,6 @@ public interface CryptoCipher extends Closeable { * </p> * * @param aad the buffer containing the Additional Authentication Data - * * @throws IllegalArgumentException if the {@code aad} * byte array is null * @throws IllegalStateException if this cipher is in a wrong state diff --git a/src/main/java/org/apache/commons/crypto/cipher/JceCipher.java b/src/main/java/org/apache/commons/crypto/cipher/JceCipher.java index 4182f3a6..f994cf4e 100644 --- a/src/main/java/org/apache/commons/crypto/cipher/JceCipher.java +++ b/src/main/java/org/apache/commons/crypto/cipher/JceCipher.java @@ -215,7 +215,6 @@ final class JceCipher implements CryptoCipher { * </p> * * @param aad the buffer containing the Additional Authentication Data - * * @throws IllegalArgumentException if the {@code aad} * byte array is {@code null} * @throws IllegalStateException if this cipher is in a wrong state @@ -243,7 +242,6 @@ final class JceCipher implements CryptoCipher { * </p> * * @param aad the buffer containing the Additional Authentication Data - * * @throws IllegalArgumentException if the {@code aad} * byte array is {@code null} * @throws IllegalStateException if this cipher is in a wrong state diff --git a/src/main/java/org/apache/commons/crypto/cipher/OpenSslCipher.java b/src/main/java/org/apache/commons/crypto/cipher/OpenSslCipher.java index 9d4b488c..5f346462 100644 --- a/src/main/java/org/apache/commons/crypto/cipher/OpenSslCipher.java +++ b/src/main/java/org/apache/commons/crypto/cipher/OpenSslCipher.java @@ -221,7 +221,6 @@ final class OpenSslCipher implements CryptoCipher { * </p> * * @param aad the buffer containing the Additional Authentication Data - * * @throws IllegalArgumentException if the {@code aad} * byte array is {@code null} * @throws IllegalStateException if this opensslEngine is in a wrong state @@ -260,7 +259,6 @@ final class OpenSslCipher implements CryptoCipher { * </p> * * @param aad the buffer containing the Additional Authentication Data - * * @throws IllegalArgumentException if the {@code aad} * byte array is {@code null} * @throws IllegalStateException if this opensslEngine is in a wrong state diff --git a/src/main/java/org/apache/commons/crypto/jna/LibreSsl20XNativeJna.java b/src/main/java/org/apache/commons/crypto/jna/LibreSsl20XNativeJna.java index d0a3ef16..28c52870 100644 --- a/src/main/java/org/apache/commons/crypto/jna/LibreSsl20XNativeJna.java +++ b/src/main/java/org/apache/commons/crypto/jna/LibreSsl20XNativeJna.java @@ -110,7 +110,6 @@ final class LibreSsl20XNativeJna implements OpenSslInterfaceNativeJna { * Generates a human-readable string representing the error code e. * * @see <a href="https://www.openssl.org/docs/man1.1.0/man3/ERR_error_string.html">ERR_error_string</a> - * * @param err * the error code * @param null_ diff --git a/src/main/java/org/apache/commons/crypto/jna/OpenSsl11XNativeJna.java b/src/main/java/org/apache/commons/crypto/jna/OpenSsl11XNativeJna.java index 6a6ef980..710574a9 100644 --- a/src/main/java/org/apache/commons/crypto/jna/OpenSsl11XNativeJna.java +++ b/src/main/java/org/apache/commons/crypto/jna/OpenSsl11XNativeJna.java @@ -102,7 +102,6 @@ final class OpenSsl11XNativeJna implements OpenSslInterfaceNativeJna { * Generates a human-readable string representing the error code e. * * @see <a href="https://www.openssl.org/docs/man1.1.0/man3/ERR_error_string.html">ERR_error_string</a> - * * @param err * the error code * @param null_ diff --git a/src/main/java/org/apache/commons/crypto/jna/OpenSsl30XNativeJna.java b/src/main/java/org/apache/commons/crypto/jna/OpenSsl30XNativeJna.java index 85aa17b3..b88cf4c3 100644 --- a/src/main/java/org/apache/commons/crypto/jna/OpenSsl30XNativeJna.java +++ b/src/main/java/org/apache/commons/crypto/jna/OpenSsl30XNativeJna.java @@ -104,7 +104,6 @@ final class OpenSsl30XNativeJna implements OpenSslInterfaceNativeJna { * Generates a human-readable string representing the error code e. * * @see <a href="https://www.openssl.org/docs/man3.1.0/man3/ERR_error_string.html">ERR_error_string</a> - * * @param err * the error code * @param null_ diff --git a/src/main/java/org/apache/commons/crypto/jna/OpenSslJnaCipher.java b/src/main/java/org/apache/commons/crypto/jna/OpenSslJnaCipher.java index 8ec09df4..d5aae546 100644 --- a/src/main/java/org/apache/commons/crypto/jna/OpenSslJnaCipher.java +++ b/src/main/java/org/apache/commons/crypto/jna/OpenSslJnaCipher.java @@ -327,7 +327,6 @@ final class OpenSslJnaCipher implements CryptoCipher { * </p> * * @param aad the buffer containing the Additional Authentication Data - * * @throws IllegalArgumentException if the {@code aad} byte array is {@code null} * @throws IllegalStateException if this opensslEngine is in a wrong * state (e.g., has not been initialized), @@ -357,7 +356,6 @@ final class OpenSslJnaCipher implements CryptoCipher { * </p> * * @param aad the buffer containing the Additional Authentication Data - * * @throws IllegalArgumentException if the {@code aad} byte array is {@code null} * @throws IllegalStateException if this opensslEngine is in a wrong * state (e.g., has not been initialized), diff --git a/src/main/java/org/apache/commons/crypto/stream/input/StreamInput.java b/src/main/java/org/apache/commons/crypto/stream/input/StreamInput.java index 674df6d8..c510312f 100644 --- a/src/main/java/org/apache/commons/crypto/stream/input/StreamInput.java +++ b/src/main/java/org/apache/commons/crypto/stream/input/StreamInput.java @@ -86,7 +86,6 @@ public class StreamInput implements Input { * Reads a sequence of bytes from input into the given buffer. * * @param dst The buffer into which bytes are to be transferred. - * * @return the total number of bytes read into the buffer, or * {@code EOS (-1)} if there is no more data because the end of the * stream has been reached. diff --git a/src/main/java/org/apache/commons/crypto/stream/output/ChannelOutput.java b/src/main/java/org/apache/commons/crypto/stream/output/ChannelOutput.java index 9fc617dd..da501612 100644 --- a/src/main/java/org/apache/commons/crypto/stream/output/ChannelOutput.java +++ b/src/main/java/org/apache/commons/crypto/stream/output/ChannelOutput.java @@ -73,7 +73,6 @@ public class ChannelOutput implements Output { * Writes a sequence of bytes to this output from the given buffer. * * @param src The buffer from which bytes are to be retrieved. - * * @return The number of bytes written, possibly zero. * @throws IOException if an I/O error occurs. */ diff --git a/src/main/java/org/apache/commons/crypto/stream/output/Output.java b/src/main/java/org/apache/commons/crypto/stream/output/Output.java index 80c1ba8f..5c788ecc 100644 --- a/src/main/java/org/apache/commons/crypto/stream/output/Output.java +++ b/src/main/java/org/apache/commons/crypto/stream/output/Output.java @@ -74,9 +74,7 @@ public interface Output extends Closeable { * <em>p</em> {@code +} <em>n</em>; its limit will not have changed. * * @param src The buffer from which bytes are to be retrieved. - * * @return The number of bytes written, possibly zero. - * * @throws IOException If some other I/O error occurs. */ int write(ByteBuffer src) throws IOException; diff --git a/src/main/java/org/apache/commons/crypto/stream/output/StreamOutput.java b/src/main/java/org/apache/commons/crypto/stream/output/StreamOutput.java index 22fdce8a..e9413d79 100644 --- a/src/main/java/org/apache/commons/crypto/stream/output/StreamOutput.java +++ b/src/main/java/org/apache/commons/crypto/stream/output/StreamOutput.java @@ -85,7 +85,6 @@ public class StreamOutput implements Output { * Writes a sequence of bytes to this output from the given buffer. * * @param src The buffer from which bytes are to be retrieved. - * * @return The number of bytes written, possibly zero. * @throws IOException if an I/O error occurs. */