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
commit 3d2bde15449c0d75767f3b7bc3925da8d1dcfa3e Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Dec 7 16:23:46 2024 -0500 Normalize spelling Note that "UNIX" is a trademark, "Unix" is not --- .../compress/archivers/ArchiveStreamFactory.java | 2 +- .../compress/archivers/arj/ArjArchiveEntry.java | 12 ++++++------ .../compress/archivers/dump/DumpArchiveEntry.java | 2 +- .../archivers/dump/DumpArchiveInputStream.java | 2 +- .../compress/archivers/dump/package-info.java | 2 +- .../archivers/tar/TarArchiveInputStream.java | 2 +- .../archivers/tar/TarArchiveOutputStream.java | 2 +- .../commons/compress/archivers/tar/TarFile.java | 2 +- .../compress/archivers/zip/AsiExtraField.java | 4 ++-- .../commons/compress/archivers/zip/UnixStat.java | 2 +- .../archivers/zip/X5455_ExtendedTimestamp.java | 8 ++++---- .../compress/archivers/zip/X7875_NewUnix.java | 12 ++++++------ .../compress/archivers/zip/ZipArchiveEntry.java | 6 +++--- .../commons/compress/archivers/zip/ZipUtil.java | 2 +- .../compressors/CompressorStreamFactory.java | 2 +- .../compressors/z/ZCompressorInputStream.java | 4 ++-- .../apache/commons/compress/utils/TimeUtils.java | 22 +++++++++++----------- .../compress/archivers/tar/FileTimesIT.java | 2 +- 18 files changed, 45 insertions(+), 45 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/ArchiveStreamFactory.java b/src/main/java/org/apache/commons/compress/archivers/ArchiveStreamFactory.java index 3fb8106ee..967257ace 100644 --- a/src/main/java/org/apache/commons/compress/archivers/ArchiveStreamFactory.java +++ b/src/main/java/org/apache/commons/compress/archivers/ArchiveStreamFactory.java @@ -162,7 +162,7 @@ public class ArchiveStreamFactory implements ArchiveStreamProvider { public static final String CPIO = "cpio"; /** - * Constant (value {@value}) used to identify the UNIX DUMP archive format. Not supported as an output stream type. + * Constant (value {@value}) used to identify the Unix DUMP archive format. Not supported as an output stream type. * * @since 1.3 */ diff --git a/src/main/java/org/apache/commons/compress/archivers/arj/ArjArchiveEntry.java b/src/main/java/org/apache/commons/compress/archivers/arj/ArjArchiveEntry.java index 37456398f..099712664 100644 --- a/src/main/java/org/apache/commons/compress/archivers/arj/ArjArchiveEntry.java +++ b/src/main/java/org/apache/commons/compress/archivers/arj/ArjArchiveEntry.java @@ -134,7 +134,7 @@ public class ArjArchiveEntry implements ArchiveEntry { * <p> * Note the interpretation of time is different depending on the HostOS that has created the archive. While an OS that is {@link #isHostOsUnix considered to * be Unix} stores time in a time zone independent manner, other platforms only use the local time. I.e. if an archive has been created at midnight UTC on a - * machine in time zone UTC this method will return midnight regardless of time zone if the archive has been created on a non-UNIX system and a time taking + * machine in time zone UTC this method will return midnight regardless of time zone if the archive has been created on a non-Unix system and a time taking * the current time zone into account if the archive has been created on Unix. * </p> * @@ -191,12 +191,12 @@ public class ArjArchiveEntry implements ArchiveEntry { } /** - * File mode of this entry as UNIX stat value. + * File mode of this entry as Unix stat value. * * <p> - * Will only be non-zero of the host os was UNIX. + * Will only be non-zero of the host os was Unix. * - * @return the UNIX mode + * @return the Unix mode */ public int getUnixMode() { return isHostOsUnix() ? getMode() : 0; @@ -219,9 +219,9 @@ public class ArjArchiveEntry implements ArchiveEntry { } /** - * Is the operating system the archive has been created on one that is considered a UNIX OS by arj? + * Is the operating system the archive has been created on one that is considered a Unix OS by arj? * - * @return whether the operating system the archive has been created on is considered a UNIX OS by arj + * @return whether the operating system the archive has been created on is considered a Unix OS by arj */ public boolean isHostOsUnix() { return getHostOs() == HostOs.UNIX || getHostOs() == HostOs.NEXT; diff --git a/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.java b/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.java index a720342ab..2d9512fae 100644 --- a/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.java +++ b/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.java @@ -130,7 +130,7 @@ import org.apache.commons.compress.archivers.ArchiveEntry; * // copied from the FreeBSD 2.0 <ufs/ufs/dinode.h> include file * // * struct new_bsd_inode { - * __u16 di_mode; // file type, standard UNIX permissions + * __u16 di_mode; // file type, standard Unix permissions * __s16 di_nlink; // number of hard links to file. * union { * __u16 oldids[2]; diff --git a/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveInputStream.java b/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveInputStream.java index c70a3b4d5..6d390215c 100644 --- a/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveInputStream.java +++ b/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveInputStream.java @@ -36,7 +36,7 @@ import org.apache.commons.compress.archivers.zip.ZipEncodingHelper; import org.apache.commons.compress.utils.IOUtils; /** - * The DumpArchiveInputStream reads a UNIX dump archive as an InputStream. Methods are provided to position at each successive entry in the archive, and the + * The DumpArchiveInputStream reads a Unix dump archive as an InputStream. Methods are provided to position at each successive entry in the archive, and the * read each entry as a normal input stream using read(). * <p> * There doesn't seem to exist a hint on the encoding of string values in any piece documentation. Given the main purpose of dump/restore is backing up a system diff --git a/src/main/java/org/apache/commons/compress/archivers/dump/package-info.java b/src/main/java/org/apache/commons/compress/archivers/dump/package-info.java index e72284309..95494521c 100644 --- a/src/main/java/org/apache/commons/compress/archivers/dump/package-info.java +++ b/src/main/java/org/apache/commons/compress/archivers/dump/package-info.java @@ -18,7 +18,7 @@ */ /** - * This package provides stream classes for reading archives using the UNIX DUMP format. + * This package provides stream classes for reading archives using the Unix DUMP format. * <p> * This format is similar to (and contemporary with) TAR but reads the raw filesystem directly. This means that writers are filesystem-specific even though the * created archives are filesystem-agnostic. diff --git a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java index b138c4ec2..3821c4c3e 100644 --- a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java +++ b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java @@ -41,7 +41,7 @@ import org.apache.commons.compress.utils.BoundedInputStream; import org.apache.commons.compress.utils.IOUtils; /** - * The TarInputStream reads a UNIX tar archive as an InputStream. methods are provided to position at each successive entry in the archive, and the read each + * The TarInputStream reads a Unix tar archive as an InputStream. methods are provided to position at each successive entry in the archive, and the read each * entry as a normal input stream using read(). * * @NotThreadSafe diff --git a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java index 4f3588d9b..fec8eb2dc 100644 --- a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java +++ b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java @@ -46,7 +46,7 @@ import org.apache.commons.io.output.CountingOutputStream; import org.apache.commons.lang3.ArrayFill; /** - * The TarOutputStream writes a UNIX tar archive as an OutputStream. Methods are provided to put entries, and then write their contents by writing to this + * The TarOutputStream writes a Unix tar archive as an OutputStream. Methods are provided to put entries, and then write their contents by writing to this * stream using write(). * * <p> diff --git a/src/main/java/org/apache/commons/compress/archivers/tar/TarFile.java b/src/main/java/org/apache/commons/compress/archivers/tar/TarFile.java index 61479c87d..694e9eff8 100644 --- a/src/main/java/org/apache/commons/compress/archivers/tar/TarFile.java +++ b/src/main/java/org/apache/commons/compress/archivers/tar/TarFile.java @@ -41,7 +41,7 @@ import org.apache.commons.compress.utils.BoundedSeekableByteChannelInputStream; import org.apache.commons.compress.utils.SeekableInMemoryByteChannel; /** - * Provides random access to UNIX archives. + * Provides random access to Unix archives. * * @since 1.21 */ diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/AsiExtraField.java b/src/main/java/org/apache/commons/compress/archivers/zip/AsiExtraField.java index 34c232f47..57c7a7b8f 100644 --- a/src/main/java/org/apache/commons/compress/archivers/zip/AsiExtraField.java +++ b/src/main/java/org/apache/commons/compress/archivers/zip/AsiExtraField.java @@ -26,7 +26,7 @@ import java.util.zip.CRC32; import java.util.zip.ZipException; /** - * Adds UNIX file permission and UID/GID fields as well as symbolic link handling. + * Adds Unix file permission and UID/GID fields as well as symbolic link handling. * * <p> * This class uses the ASi extra field in the format: @@ -65,7 +65,7 @@ public class AsiExtraField implements ZipExtraField, UnixStat, Cloneable { private static final int MIN_SIZE = WORD + SHORT + WORD + SHORT + SHORT; /** - * Standard UNIX stat(2) file mode. + * Standard Unix stat(2) file mode. */ private int mode; /** diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/UnixStat.java b/src/main/java/org/apache/commons/compress/archivers/zip/UnixStat.java index 4fe464849..14b4d724a 100644 --- a/src/main/java/org/apache/commons/compress/archivers/zip/UnixStat.java +++ b/src/main/java/org/apache/commons/compress/archivers/zip/UnixStat.java @@ -19,7 +19,7 @@ package org.apache.commons.compress.archivers.zip; /** - * Constants from stat.h on UNIX systems. + * Constants from stat.h on Unix systems. * <p> * TODO This will be an class in 2.0. * </p> diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/X5455_ExtendedTimestamp.java b/src/main/java/org/apache/commons/compress/archivers/zip/X5455_ExtendedTimestamp.java index 71018c154..c4b74b4cb 100644 --- a/src/main/java/org/apache/commons/compress/archivers/zip/X5455_ExtendedTimestamp.java +++ b/src/main/java/org/apache/commons/compress/archivers/zip/X5455_ExtendedTimestamp.java @@ -31,7 +31,7 @@ import org.apache.commons.io.file.attribute.FileTimes; /** * <p> * An extra field that stores additional file and directory timestamp data for ZIP entries. Each ZIP entry can include up to three timestamps (modify, access, - * create*). The timestamps are stored as 32 bit signed integers representing seconds since UNIX epoch (Jan 1st, 1970, UTC). This field improves on ZIP's + * create*). The timestamps are stored as 32 bit signed integers representing seconds since Unix epoch (Jan 1st, 1970, UTC). This field improves on ZIP's * default timestamp granularity, since it allows one to store additional timestamps, and, in addition, the timestamps are stored using per-second granularity * (zip's default behavior can only store timestamps to the nearest <em>even</em> second). * </p> @@ -44,7 +44,7 @@ import org.apache.commons.io.file.attribute.FileTimes; * <li><strong>accessTime:</strong> most recent time file/directory was opened (e.g., read from disk). Many people disable their operating systems from updating * this value using the NOATIME mount option to optimize disk behavior, and thus it's not always reliable. In those cases it's always equal to modifyTime.</li> * <li><strong>*createTime:</strong> modern Linux file systems (e.g., ext2 and newer) do not appear to store a value like this, and so it's usually omitted - * altogether in the ZIP extra field. Perhaps other UNIX systems track this.</li> + * altogether in the ZIP extra field. Perhaps other Unix systems track this.</li> * </ul> * <p> * We're using the field definition given in Info-Zip's source archive: zip-3.0.tar.gz/proginfo/extrafld.txt @@ -253,7 +253,7 @@ public class X5455_ExtendedTimestamp implements ZipExtraField, Cloneable, Serial * </p> * <p> * Note: modern Linux file systems (e.g., ext2) do not appear to store a "create time" value, and so it's usually omitted altogether in the ZIP extra field. - * Perhaps other UNIX systems track this. + * Perhaps other Unix systems track this. * </p> * * @return create time as java.util.Date or null. @@ -268,7 +268,7 @@ public class X5455_ExtendedTimestamp implements ZipExtraField, Cloneable, Serial * </p> * <p> * Note: modern Linux file systems (e.g., ext2) do not appear to store a "create time" value, and so it's usually omitted altogether in the ZIP extra field. - * Perhaps other UNIX systems track this. + * Perhaps other Unix systems track this. * </p> * * @return create time (seconds since epoch) or null. diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/X7875_NewUnix.java b/src/main/java/org/apache/commons/compress/archivers/zip/X7875_NewUnix.java index 567af5116..2941e2d8a 100644 --- a/src/main/java/org/apache/commons/compress/archivers/zip/X7875_NewUnix.java +++ b/src/main/java/org/apache/commons/compress/archivers/zip/X7875_NewUnix.java @@ -30,7 +30,7 @@ import java.util.zip.ZipException; import org.apache.commons.compress.utils.ByteUtils; /** - * An extra field that stores UNIX UID/GID data (owner & group ownership) for a given ZIP entry. We're using the field definition given in Info-Zip's source + * An extra field that stores Unix UID/GID data (owner & group ownership) for a given ZIP entry. We're using the field definition given in Info-Zip's source * archive: zip-3.0.tar.gz/proginfo/extrafld.txt * * <pre> @@ -94,10 +94,10 @@ public class X7875_NewUnix implements ZipExtraField, Cloneable, Serializable { * * 2.) Fundamentally, ZIP files are about shrinking things, so let's save a few bytes per entry while we can. * - * 3.) Of all the people creating ZIP files using commons- compress, how many care about UNIX UID/GID attributes of the files they store? (e.g., I am + * 3.) Of all the people creating ZIP files using commons- compress, how many care about Unix UID/GID attributes of the files they store? (e.g., I am * probably thinking way too hard about this and no one cares!) * - * 4.) InfoZip's tool, even though it carefully stores every UID/GID for every file zipped on a UNIX machine (by default) currently appears unable to + * 4.) InfoZip's tool, even though it carefully stores every UID/GID for every file zipped on a Unix machine (by default) currently appears unable to * ever restore UID/GID. unzip -X has no effect on my machine, even when run as root!!!! * * And thus it is decided: MIN_LENGTH=1. @@ -168,7 +168,7 @@ public class X7875_NewUnix implements ZipExtraField, Cloneable, Serializable { } /** - * Gets the GID as a long. GID is typically a 32 bit unsigned value on most UNIX systems, so we return a long to avoid integer overflow into the negatives + * Gets the GID as a long. GID is typically a 32 bit unsigned value on most Unix systems, so we return a long to avoid integer overflow into the negatives * in case values above and including 2^31 are being used. * * @return the GID value. @@ -251,7 +251,7 @@ public class X7875_NewUnix implements ZipExtraField, Cloneable, Serializable { } /** - * Gets the UID as a long. UID is typically a 32 bit unsigned value on most UNIX systems, so we return a long to avoid integer overflow into the negatives + * Gets the UID as a long. UID is typically a 32 bit unsigned value on most Unix systems, so we return a long to avoid integer overflow into the negatives * in case values above and including 2^31 are being used. * * @return the UID value. @@ -313,7 +313,7 @@ public class X7875_NewUnix implements ZipExtraField, Cloneable, Serializable { * Reset state back to newly constructed state. Helps us make sure parse() calls always generate clean results. */ private void reset() { - // Typical UID/GID of the first non-root user created on a UNIX system. + // Typical UID/GID of the first non-root user created on a Unix system. uid = ONE_THOUSAND; gid = ONE_THOUSAND; } 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 781bfa386..25c2971e7 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 @@ -1402,9 +1402,9 @@ public class ZipArchiveEntry extends ZipEntry implements ArchiveEntry, EntryStre } /** - * Sets the platform (UNIX or FAT). + * Sets the platform (Unix or FAT). * - * @param platform an {@code int} value - 0 is FAT, 3 is UNIX + * @param platform an {@code int} value - 0 is FAT, 3 is Unix */ protected void setPlatform(final int platform) { this.platform = platform; @@ -1473,7 +1473,7 @@ public class ZipArchiveEntry extends ZipEntry implements ArchiveEntry, EntryStre } /** - * Sets UNIX permissions in a way that is understood by Info-Zip's unzip command. + * Sets Unix permissions in a way that is understood by Info-Zip's unzip command. * * @param mode an {@code int} value */ diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/ZipUtil.java b/src/main/java/org/apache/commons/compress/archivers/zip/ZipUtil.java index 1658e7862..8c98d361c 100644 --- a/src/main/java/org/apache/commons/compress/archivers/zip/ZipUtil.java +++ b/src/main/java/org/apache/commons/compress/archivers/zip/ZipUtil.java @@ -254,7 +254,7 @@ public abstract class ZipUtil { } if (l < 0 && l >= Integer.MIN_VALUE) { // If someone passes in a -2, they probably mean 4294967294 - // (For example, UNIX UID/GID's are 32 bit unsigned.) + // (For example, Unix UID/GID's are 32 bit unsigned.) l = adjustToLong((int) l); } return BigInteger.valueOf(l); diff --git a/src/main/java/org/apache/commons/compress/compressors/CompressorStreamFactory.java b/src/main/java/org/apache/commons/compress/compressors/CompressorStreamFactory.java index f1e72d341..2489e2adf 100644 --- a/src/main/java/org/apache/commons/compress/compressors/CompressorStreamFactory.java +++ b/src/main/java/org/apache/commons/compress/compressors/CompressorStreamFactory.java @@ -149,7 +149,7 @@ public class CompressorStreamFactory implements CompressorStreamProvider { public static final String SNAPPY_RAW = "snappy-raw"; /** - * Constant (value {@value}) used to identify the traditional UNIX compress method. Not supported as an output stream type. + * Constant (value {@value}) used to identify the traditional Unix compress method. Not supported as an output stream type. * * @since 1.7 */ diff --git a/src/main/java/org/apache/commons/compress/compressors/z/ZCompressorInputStream.java b/src/main/java/org/apache/commons/compress/compressors/z/ZCompressorInputStream.java index bfd6091a0..c2f076b67 100644 --- a/src/main/java/org/apache/commons/compress/compressors/z/ZCompressorInputStream.java +++ b/src/main/java/org/apache/commons/compress/compressors/z/ZCompressorInputStream.java @@ -37,11 +37,11 @@ public class ZCompressorInputStream extends LZWInputStream { private static final int MAX_CODE_SIZE_MASK = 0x1f; /** - * Checks if the signature matches what is expected for a UNIX compress file. + * Checks if the signature matches what is expected for a Unix compress file. * * @param signature the bytes to check * @param length the number of bytes to check - * @return true, if this stream is a UNIX compress compressed stream, false otherwise + * @return true, if this stream is a Unix compress compressed stream, false otherwise * @since 1.9 */ public static boolean matches(final byte[] signature, final int length) { diff --git a/src/main/java/org/apache/commons/compress/utils/TimeUtils.java b/src/main/java/org/apache/commons/compress/utils/TimeUtils.java index 9b41d89a3..7d63b9e36 100644 --- a/src/main/java/org/apache/commons/compress/utils/TimeUtils.java +++ b/src/main/java/org/apache/commons/compress/utils/TimeUtils.java @@ -26,10 +26,10 @@ import org.apache.commons.io.file.attribute.FileTimes; /** * Utility class for handling time-related types and conversions. * <p> - * Understanding UNIX vs NTFS timestamps: + * Understanding Unix vs NTFS timestamps: * </p> * <ul> - * <li>A <a href="https://en.wikipedia.org/wiki/Unix_time">UNIX timestamp</a> is a primitive long starting at the UNIX Epoch on January 1st, 1970 at Coordinated + * <li>A <a href="https://en.wikipedia.org/wiki/Unix_time">Unix timestamp</a> is a primitive long starting at the Unix Epoch on January 1st, 1970 at Coordinated * Universal Time (UTC)</li> * <li>An <a href="https://learn.microsoft.com/en-us/windows/win32/sysinfo/file-times">NTFS timestamp</a> is a file time is a 64-bit value that represents the * number of 100-nanosecond intervals that have elapsed since 12:00 A.M. January 1, 1601 Coordinated Universal Time (UTC).</li> @@ -46,20 +46,20 @@ public final class TimeUtils { * <a href="https://msdn.microsoft.com/en-us/library/windows/desktop/ms724290%28v=vs.85%29.aspx">Windows File Times</a> * <p> * A file time is a 64-bit value that represents the number of 100-nanosecond intervals that have elapsed since 12:00 A.M. January 1, 1601 Coordinated - * Universal Time (UTC). This is the offset of Windows time 0 to UNIX epoch in 100-nanosecond intervals. + * Universal Time (UTC). This is the offset of Windows time 0 to Unix epoch in 100-nanosecond intervals. * </p> */ static final long WINDOWS_EPOCH_OFFSET = -116444736000000000L; /** - * Tests whether a FileTime can be safely represented in the standard UNIX time. + * Tests whether a FileTime can be safely represented in the standard Unix time. * * <p> * TODO ? If the FileTime is null, this method always returns true. * </p> * * @param time the FileTime to evaluate, can be null. - * @return true if the time exceeds the minimum or maximum UNIX time, false otherwise. + * @return true if the time exceeds the minimum or maximum Unix time, false otherwise. * @deprecated use {@link FileTimes#isUnixTime(FileTime)} */ @Deprecated @@ -68,10 +68,10 @@ public final class TimeUtils { } /** - * Tests whether a given number of seconds (since Epoch) can be safely represented in the standard UNIX time. + * Tests whether a given number of seconds (since Epoch) can be safely represented in the standard Unix time. * * @param seconds the number of seconds (since Epoch) to evaluate. - * @return true if the time can be represented in the standard UNIX time, false otherwise. + * @return true if the time can be represented in the standard Unix time, false otherwise. * @deprecated Use {@link FileTimes#isUnixTime(long)} */ @Deprecated @@ -168,10 +168,10 @@ public final class TimeUtils { } /** - * Converts {@link FileTime} to standard UNIX time. + * Converts {@link FileTime} to standard Unix time. * * @param fileTime the original FileTime. - * @return the UNIX timestamp. + * @return the Unix timestamp. */ public static long toUnixTime(final FileTime fileTime) { return FileTimes.toUnixTime(fileTime); @@ -189,9 +189,9 @@ public final class TimeUtils { } /** - * Converts standard UNIX time (in seconds, UTC/GMT) to {@link FileTime}. + * Converts standard Unix time (in seconds, UTC/GMT) to {@link FileTime}. * - * @param time UNIX timestamp (in seconds, UTC/GMT). + * @param time Unix timestamp (in seconds, UTC/GMT). * @return the corresponding FileTime. * @deprecated Use {@link FileTimes#fromUnixTime(long)} */ diff --git a/src/test/java/org/apache/commons/compress/archivers/tar/FileTimesIT.java b/src/test/java/org/apache/commons/compress/archivers/tar/FileTimesIT.java index d5414a62a..79e490961 100644 --- a/src/test/java/org/apache/commons/compress/archivers/tar/FileTimesIT.java +++ b/src/test/java/org/apache/commons/compress/archivers/tar/FileTimesIT.java @@ -371,7 +371,7 @@ public class FileTimesIT extends AbstractTest { } } - // Old UNIX V7 tar format + // Old Unix V7 tar format @Test public void testReadTimeFromTarV7() throws Exception { final String file = "COMPRESS-612/test-times-v7.tar";