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 170760a4f Javadoc
170760a4f is described below
commit 170760a4f9d62c63f3d433a7a8e9c09f37acbc71
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Nov 14 16:45:58 2023 -0500
Javadoc
---
.../apache/commons/compress/archivers/ar/ArArchiveInputStream.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveInputStream.java
b/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveInputStream.java
index 3a1b76619..3e0e78287 100644
---
a/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveInputStream.java
+++
b/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveInputStream.java
@@ -138,16 +138,16 @@ public class ArArchiveInputStream extends
ArchiveInputStream<ArArchiveEntry> {
*/
private ArArchiveEntry currentEntry;
- // Storage area for extra long names (GNU ar)
+ /** Storage area for extra long names (GNU ar). */
private byte[] namebuffer;
- /*
+ /**
* The offset where the current entry started. -1 if no entry has been
* called
*/
private long entryOffset = -1;
- // cached buffer for meta data - must only be used locally in the class
(COMPRESS-172 - reduce garbage collection)
+ /** cached buffer for meta data - must only be used locally in the class
(COMPRESS-172 - reduce garbage collection). */
private final byte[] metaData =
new byte[NAME_LEN + LAST_MODIFIED_LEN + USER_ID_LEN + GROUP_ID_LEN +
FILE_MODE_LEN + LENGTH_LEN];