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

commit 5dde54954ed20b04990440ed2d3b41fb658a679d
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Jun 18 09:14:10 2024 -0400

    Javadoc
---
 .../java/org/apache/commons/crypto/stream/CryptoInputStream.java    | 6 +++---
 .../java/org/apache/commons/crypto/stream/CryptoOutputStream.java   | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/crypto/stream/CryptoInputStream.java 
b/src/main/java/org/apache/commons/crypto/stream/CryptoInputStream.java
index 5d32d1dc..f2aa997b 100644
--- a/src/main/java/org/apache/commons/crypto/stream/CryptoInputStream.java
+++ b/src/main/java/org/apache/commons/crypto/stream/CryptoInputStream.java
@@ -469,7 +469,7 @@ public class CryptoInputStream extends InputStream 
implements ReadableByteChanne
     }
 
     /**
-     * Overrides the {@link java.io.InputStream#read()}. Reads the next byte of
+     * Overrides the {@link InputStream#read()}. Reads the next byte of
      * data from the input stream.
      *
      * @return the next byte of data, or {@code EOS (-1)} if the end of the
@@ -486,7 +486,7 @@ public class CryptoInputStream extends InputStream 
implements ReadableByteChanne
     }
 
     /**
-     * Overrides the {@link java.io.InputStream#read(byte[], int, int)}.
+     * Overrides the {@link InputStream#read(byte[], int, int)}.
      * Decryption is buffer based. If there is data in {@link #outBuffer}, then
      * read it out of this buffer. If there is no data in {@link #outBuffer},
      * then read more from the underlying stream and do the decryption.
@@ -573,7 +573,7 @@ public class CryptoInputStream extends InputStream 
implements ReadableByteChanne
     }
 
     /**
-     * Overrides the {@link java.io.InputStream#skip(long)}. Skips over and
+     * Overrides the {@link InputStream#skip(long)}. Skips over and
      * discards {@code n} bytes of data from this input stream.
      *
      * @param n the number of bytes to be skipped.
diff --git 
a/src/main/java/org/apache/commons/crypto/stream/CryptoOutputStream.java 
b/src/main/java/org/apache/commons/crypto/stream/CryptoOutputStream.java
index d1128982..f63f7ae0 100644
--- a/src/main/java/org/apache/commons/crypto/stream/CryptoOutputStream.java
+++ b/src/main/java/org/apache/commons/crypto/stream/CryptoOutputStream.java
@@ -362,7 +362,7 @@ public class CryptoOutputStream extends OutputStream 
implements
     }
 
     /**
-     * Overrides the {@link java.io.OutputStream#write(byte[], int, int)}.
+     * Overrides the {@link OutputStream#write(byte[], int, int)}.
      * Encryption is buffer based. If there is enough room in {@link 
#inBuffer},
      * then write to this buffer. If {@link #inBuffer} is full, then do
      * encryption and write data to the underlying stream.
@@ -434,7 +434,7 @@ public class CryptoOutputStream extends OutputStream 
implements
     }
 
     /**
-     * Overrides the {@link java.io.OutputStream#write(byte[])}. Writes the
+     * Overrides the {@link OutputStream#write(byte[])}. Writes the
      * specified byte to this output stream.
      *
      * @param b the data.

Reply via email to