From 3d294d5771dc24a0211faeda2917b78fd45d41e9 Mon Sep 17 00:00:00 2001
From: shendaras <shendaras>
Date: Mon, 12 Apr 2004 10:26:42 +0000
Subject: [PATCH] fix javadoc warning:  no @return on void functions
 (shendaras)

---
 core/java/src/net/i2p/crypto/CryptixRijndael_Algorithm.java | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/core/java/src/net/i2p/crypto/CryptixRijndael_Algorithm.java b/core/java/src/net/i2p/crypto/CryptixRijndael_Algorithm.java
index 4f0078615b..8a872e3f82 100644
--- a/core/java/src/net/i2p/crypto/CryptixRijndael_Algorithm.java
+++ b/core/java/src/net/i2p/crypto/CryptixRijndael_Algorithm.java
@@ -382,7 +382,6 @@ public final class CryptixRijndael_Algorithm // implicit no-argument constructor
      * @param  result     The resulting ciphertext.
      * @param  inOffset   Index of in from which to start considering data.
      * @param  sessionKey The session key to use for encryption.
-     * @return The ciphertext generated from a plaintext using the session key.
      */
     public static final void blockEncrypt(byte[] in, byte[] result, int inOffset, Object sessionKey) {
         if (_RDEBUG) trace(_IN, "blockEncrypt(" + in + ", " + inOffset + ", " + sessionKey + ")");
@@ -450,10 +449,9 @@ public final class CryptixRijndael_Algorithm // implicit no-argument constructor
      * Rijndael's default block size (128-bit).
      *
      * @param  in         The ciphertext.
-     * @param  result the resulting ciphertext
+     * @param  result     The resulting ciphertext
      * @param  inOffset   Index of in from which to start considering data.
      * @param  sessionKey The session key to use for decryption.
-     * @return The plaintext generated from a ciphertext using the session key.
      */
     public static final void blockDecrypt(byte[] in, byte[] result, int inOffset, Object sessionKey) {
         if (_RDEBUG) trace(_IN, "blockDecrypt(" + in + ", " + inOffset + ", " + sessionKey + ")");
@@ -620,7 +618,6 @@ public final class CryptixRijndael_Algorithm // implicit no-argument constructor
      * @param  inOffset   Index of in from which to start considering data.
      * @param  sessionKey The session key to use for encryption.
      * @param  blockSize  The block size in bytes of this Rijndael.
-     * @return The ciphertext generated from a plaintext using the session key.
      */
     public static final void blockEncrypt(byte[] in, byte[] result, int inOffset, Object sessionKey, int blockSize) {
         if (blockSize == _BLOCK_SIZE) {
@@ -676,7 +673,6 @@ public final class CryptixRijndael_Algorithm // implicit no-argument constructor
      * @param  inOffset   Index of in from which to start considering data.
      * @param  sessionKey The session key to use for decryption.
      * @param  blockSize  The block size in bytes of this Rijndael.
-     * @return The plaintext generated from a ciphertext using the session key.
      */
     public static final void blockDecrypt(byte[] in, byte[] result, int inOffset, Object sessionKey, int blockSize) {
         if (blockSize == _BLOCK_SIZE) {
-- 
GitLab