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 22a39d1c2 Comment
22a39d1c2 is described below
commit 22a39d1c278c3d08f0b4e0323374446f9172f87e
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Dec 22 13:14:55 2023 -0500
Comment
---
src/main/java/org/apache/commons/compress/utils/TimeUtils.java | 1 +
1 file changed, 1 insertion(+)
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 a149b6a82..22bd925b7 100644
--- a/src/main/java/org/apache/commons/compress/utils/TimeUtils.java
+++ b/src/main/java/org/apache/commons/compress/utils/TimeUtils.java
@@ -191,6 +191,7 @@ public final class TimeUtils {
* @return the corresponding FileTime.
*/
public static FileTime unixTimeToFileTime(final long time) {
+ // TODO Apache Commons IO 2.16.0 FileTimes.fromUnixTime(long)
return FileTime.from(time, TimeUnit.SECONDS);
}