We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b3ed4f commit 45b668aCopy full SHA for 45b668a
src/main/java/org/codehaus/plexus/archiver/zip/AbstractZipUnArchiver.java
@@ -117,7 +117,7 @@ public InputStream getContents() throws IOException {
117
@Override
118
public long getLastModified() {
119
final long l = zipEntry.getTime();
120
- return l == 0 || l == -1 ? PlexusIoResource.UNKNOWN_MODIFICATION_DATE : l;
+ return l <= 0 ? PlexusIoResource.UNKNOWN_MODIFICATION_DATE : l;
121
}
122
123
0 commit comments