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 ffb38897e Javadoc ffb38897e is described below commit ffb38897e8aa940a9b87d2f3f4e7f6402064d0b4 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Dec 21 08:53:25 2023 -0500 Javadoc --- .../compress/archivers/zip/ZipSplitReadOnlySeekableByteChannel.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/ZipSplitReadOnlySeekableByteChannel.java b/src/main/java/org/apache/commons/compress/archivers/zip/ZipSplitReadOnlySeekableByteChannel.java index 904678dc6..a79b4c43b 100644 --- a/src/main/java/org/apache/commons/compress/archivers/zip/ZipSplitReadOnlySeekableByteChannel.java +++ b/src/main/java/org/apache/commons/compress/archivers/zip/ZipSplitReadOnlySeekableByteChannel.java @@ -40,7 +40,6 @@ import org.apache.commons.compress.utils.MultiReadOnlySeekableByteChannel; /** * {@link MultiReadOnlySeekableByteChannel} that knows what a split ZIP archive should look like. - * * <p> * If you want to read a split archive using {@link ZipFile} then create an instance of this class from the parts of the archive. * </p> @@ -264,9 +263,10 @@ public class ZipSplitReadOnlySeekableByteChannel extends MultiReadOnlySeekableBy * 8.5.3 Spanned/Split archives created using PKZIP for Windows (V2.50 or greater), PKZIP Command Line (V2.50 or greater), or PKZIP Explorer will include a * special spanning signature as the first 4 bytes of the first segment of the archive. This signature (0x08074b50) will be followed immediately by the * local header signature for the first file in the archive. - * + * </p> * <p> - * the first 4 bytes of the first ZIP split segment should be the ZIP split signature(0x08074B50) + * The first 4 bytes of the first ZIP split segment should be the ZIP split signature(0x08074B50) + * </p> * * @param channels channels to be validated * @throws IOException