cstamas commented on code in PR #469: URL: https://github.com/apache/maven-resolver/pull/469#discussion_r1566975705
########## maven-resolver-transport-http/src/main/java/org/eclipse/aether/transport/http/HttpTransporter.java: ########## @@ -691,8 +690,7 @@ public void handle(CloseableHttpResponse response) throws IOException, TransferC if (lastModifiedHeader != null) { Date lastModified = DateUtils.parseDate(lastModifiedHeader.getValue()); if (lastModified != null) { - Files.setLastModifiedTime( - task.getDataFile().toPath(), FileTime.fromMillis(lastModified.getTime())); + task.getDataFile().setLastModified(lastModified.getTime()); Review Comment: For master I agree, will prep a followup PR that does log -- 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: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org