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 1c8a8bf6 Move Apache license header to the top of the file 1c8a8bf6 is described below commit 1c8a8bf6347da3ae0de7cb7c6ff9564f900ee8d0 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Aug 30 11:09:07 2022 -0400 Move Apache license header to the top of the file --- .../commons/compress/archivers/sevenz/SevenZArchiveEntry.java | 8 ++++---- .../org/apache/commons/compress/archivers/sevenz/SevenZFile.java | 2 +- src/main/java/org/apache/commons/compress/utils/ArchiveUtils.java | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZArchiveEntry.java b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZArchiveEntry.java index d425ec91..25fa9c45 100644 --- a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZArchiveEntry.java +++ b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZArchiveEntry.java @@ -354,7 +354,7 @@ public class SevenZArchiveEntry implements ArchiveEntry { /** * Gets the CRC. - * @since Compress 1.7 + * @since 1.7 * @return the CRC */ public long getCrcValue() { @@ -363,7 +363,7 @@ public class SevenZArchiveEntry implements ArchiveEntry { /** * Sets the CRC. - * @since Compress 1.7 + * @since 1.7 * @param crc the CRC */ public void setCrcValue(final long crc) { @@ -392,7 +392,7 @@ public class SevenZArchiveEntry implements ArchiveEntry { /** * Gets the compressed CRC. - * @since Compress 1.7 + * @since 1.7 * @return the CRC */ long getCompressedCrcValue() { @@ -401,7 +401,7 @@ public class SevenZArchiveEntry implements ArchiveEntry { /** * Sets the compressed CRC. - * @since Compress 1.7 + * @since 1.7 * @param crc the CRC */ void setCompressedCrcValue(final long crc) { diff --git a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java index 8063456a..9b678b44 100644 --- a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java +++ b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java @@ -1854,7 +1854,7 @@ public class SevenZFile implements Closeable { * @param entry the entry to get the stream for. * @return a stream to read the entry from. * @throws IOException if unable to create an input stream from the zipentry - * @since Compress 1.20 + * @since 1.20 */ public InputStream getInputStream(final SevenZArchiveEntry entry) throws IOException { int entryIndex = -1; diff --git a/src/main/java/org/apache/commons/compress/utils/ArchiveUtils.java b/src/main/java/org/apache/commons/compress/utils/ArchiveUtils.java index c2c29284..f5c6e6d3 100644 --- a/src/main/java/org/apache/commons/compress/utils/ArchiveUtils.java +++ b/src/main/java/org/apache/commons/compress/utils/ArchiveUtils.java @@ -253,7 +253,7 @@ public class ArchiveUtils { * * @param s the string to sanitize * @return a sanitized version of the argument - * @since Compress 1.12 + * @since 1.12 */ public static String sanitize(final String s) { final char[] cs = s.toCharArray();