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-compress.git
The following commit(s) were added to refs/heads/master by this push:
new 57b918b85 Javadoc
57b918b85 is described below
commit 57b918b85132c6a0f55ae2c0deb0a0c064ef278d
Author: Gary D. Gregory <[email protected]>
AuthorDate: Sat Mar 1 14:54:52 2025 -0500
Javadoc
---
.../commons/compress/archivers/zip/RandomAccessOutputStream.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/src/main/java/org/apache/commons/compress/archivers/zip/RandomAccessOutputStream.java
b/src/main/java/org/apache/commons/compress/archivers/zip/RandomAccessOutputStream.java
index ffde62366..ea1f6a078 100644
---
a/src/main/java/org/apache/commons/compress/archivers/zip/RandomAccessOutputStream.java
+++
b/src/main/java/org/apache/commons/compress/archivers/zip/RandomAccessOutputStream.java
@@ -28,7 +28,7 @@
abstract class RandomAccessOutputStream extends OutputStream {
/**
- * Provides current position in output.
+ * Gets the current position in this stream.
*
* @return current position.
* @throws IOException if an I/O error occurs
@@ -41,7 +41,7 @@ public void write(final int b) throws IOException {
}
/**
- * Writes given data to specific position.
+ * Writes the given data to specific position.
*
* @param position position in the stream
* @param b data to write
@@ -52,7 +52,7 @@ public void write(final int b) throws IOException {
abstract void writeFully(byte[] b, int off, int len, long position) throws
IOException;
/**
- * Writes given data to specific position.
+ * Writes the given data to specific position.
*
* @param position position in the stream
* @param b data to write