Skip to content

Commit

Permalink
No need for blank Javadoc lines between Javadoc @ tags
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 28, 2024
1 parent 0c05cfc commit ed5bf81
Show file tree
Hide file tree
Showing 11 changed files with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,6 @@ int update(ByteBuffer inBuffer, ByteBuffer outBuffer)
* </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
Expand Down Expand Up @@ -195,7 +194,6 @@ default void updateAAD(final byte[] aad)
* </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
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/org/apache/commons/crypto/cipher/JceCipher.java
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ public int update(final ByteBuffer inBuffer, final ByteBuffer outBuffer)
* </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
Expand Down Expand Up @@ -243,7 +242,6 @@ public void updateAAD(final byte[] aad) {
* </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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ public int update(final ByteBuffer inBuffer, final ByteBuffer outBuffer)
* </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
Expand Down Expand Up @@ -260,7 +259,6 @@ public void updateAAD(final byte[] aad) throws IllegalArgumentException,
* </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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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_
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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_
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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_
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,6 @@ public int update(final ByteBuffer inBuffer, final ByteBuffer outBuffer) throws
* </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),
Expand Down Expand Up @@ -357,7 +356,6 @@ public void updateAAD(final byte[] aad)
* </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),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ public void close() throws IOException {
* 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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ public void flush() throws IOException {
* 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.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,7 @@ public interface Output extends Closeable {
* <em>p</em>&nbsp;{@code +}&nbsp;<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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ protected OutputStream getOut() {
* 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.
*/
Expand Down

0 comments on commit ed5bf81

Please sign in to comment.