andrebrait commented on code in PR #345:
URL: https://github.com/apache/commons-compress/pull/345#discussion_r1059195870
##########
src/main/java/org/apache/commons/compress/archivers/zip/X5455_ExtendedTimestamp.java:
##########
@@ -130,16 +155,20 @@ private static Date zipLongToDate(final ZipLong unixTime)
{
return unixTime != null ? new Date(unixTime.getIntValue() * 1000L) :
null;
}
+ private static FileTime zipLongToFileTime(final ZipLong unixTime) {
Review Comment:
I get it, but it became somewhat confusing having all method be overloaded
like that. I can change, though. It's up to you.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]