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 bb8ac6e99 Javadoc since tag not needed on package-private constructors. bb8ac6e99 is described below commit bb8ac6e99614d5b18c461dff1cc24580dffef630 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Feb 10 15:42:56 2024 -0500 Javadoc since tag not needed on package-private constructors. --- .../org/apache/commons/compress/archivers/zip/ZipArchiveEntry.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveEntry.java b/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveEntry.java index 8ddded61c..3e0d96924 100644 --- a/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveEntry.java +++ b/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveEntry.java @@ -293,7 +293,6 @@ public class ZipArchiveEntry extends java.util.zip.ZipEntry implements ArchiveEn * @param extraFieldFactory custom lookup factory for extra fields or null * @param inputFile file to create the entry from * @param entryName name of the entry - * @since 1.26.0 */ ZipArchiveEntry(final Function<ZipShort, ZipExtraField> extraFieldFactory, final File inputFile, final String entryName) { this(extraFieldFactory, inputFile.isDirectory() && !entryName.endsWith("/") ? entryName + "/" : entryName); @@ -346,7 +345,6 @@ public class ZipArchiveEntry extends java.util.zip.ZipEntry implements ArchiveEn * @param extraFieldFactory the extra field lookup factory. * @param entry the entry to get fields from * @throws ZipException on error - * @since 1.26.0 */ ZipArchiveEntry(final Function<ZipShort, ZipExtraField> extraFieldFactory, final java.util.zip.ZipEntry entry) throws ZipException { @@ -395,7 +393,6 @@ public class ZipArchiveEntry extends java.util.zip.ZipEntry implements ArchiveEn * @param entryName name of the entry. * @param options options indicating how symbolic links are handled. * @throws IOException if an I/O error occurs. - * @since 1.26.0 */ ZipArchiveEntry(final Function<ZipShort, ZipExtraField> extraFieldFactory, final Path inputPath, final String entryName, final LinkOption... options) throws IOException { @@ -426,7 +423,6 @@ public class ZipArchiveEntry extends java.util.zip.ZipEntry implements ArchiveEn * * @param extraFieldFactory custom lookup factory for extra fields or null * @param name the name of the entry - * @since 1.26.0 */ ZipArchiveEntry(final Function<ZipShort, ZipExtraField> extraFieldFactory, final String name) {