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 425f00ad Fix spelling
425f00ad is described below
commit 425f00adb54ee207d98cb70eac88d51c99a82989
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Jan 18 09:33:21 2023 -0500
Fix spelling
---
.../commons/compress/archivers/zip/X5455_ExtendedTimestamp.java | 6 +++---
.../apache/commons/compress/archivers/zip/X7875_NewUnixTest.java | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
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 1cfd0ae1..130def55 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
@@ -55,7 +55,7 @@ import org.apache.commons.compress.utils.TimeUtils;
* it's always equal to modifyTime.
* </li>
* <li><b>*createTime:</b>
- * modern linux file systems (e.g., ext2 and newer)
+ * 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.
@@ -284,7 +284,7 @@ public class X5455_ExtendedTimestamp implements
ZipExtraField, Cloneable, Serial
* offers only per-second precision.
* </p>
* <p>
- * Note: modern linux file systems (e.g., ext2)
+ * 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.
@@ -303,7 +303,7 @@ public class X5455_ExtendedTimestamp implements
ZipExtraField, Cloneable, Serial
* zip entry.
* </p>
* <p>
- * Note: modern linux file systems (e.g., ext2)
+ * 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.
diff --git
a/src/test/java/org/apache/commons/compress/archivers/zip/X7875_NewUnixTest.java
b/src/test/java/org/apache/commons/compress/archivers/zip/X7875_NewUnixTest.java
index 670a9d18..6921beae 100644
---
a/src/test/java/org/apache/commons/compress/archivers/zip/X7875_NewUnixTest.java
+++
b/src/test/java/org/apache/commons/compress/archivers/zip/X7875_NewUnixTest.java
@@ -200,8 +200,8 @@ public class X7875_NewUnixTest {
} else if (name.contains("min_unix")) {
expected = 0;
} else if (name.contains("max_unix")) {
- // 2^32-2 was the biggest UID/GID I could create on my
linux!
- // (December 2012, linux kernel 3.4)
+ // 2^32-2 was the biggest UID/GID I could create on my
Linux!
+ // (December 2012, Linux kernel 3.4)
expected = 0x100000000L - 2;
}
assertEquals(expected, xf.getUID());