From 2e678502eca5d0e49d04a149c9043a987b649c25 Mon Sep 17 00:00:00 2001 From: Tamas Cservenak Date: Fri, 26 Apr 2024 13:41:56 +0200 Subject: [PATCH] Fix since javadoc tags --- .../main/java/org/eclipse/aether/spi/io/PathProcessor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maven-resolver-spi/src/main/java/org/eclipse/aether/spi/io/PathProcessor.java b/maven-resolver-spi/src/main/java/org/eclipse/aether/spi/io/PathProcessor.java index 24d981ff9..be0ad2b53 100644 --- a/maven-resolver-spi/src/main/java/org/eclipse/aether/spi/io/PathProcessor.java +++ b/maven-resolver-spi/src/main/java/org/eclipse/aether/spi/io/PathProcessor.java @@ -52,7 +52,7 @@ default long lastModified(Path path, long defValue) { * @param path The path, may be {@code null}. * @throws IOException If an I/O error occurs. Some exceptions/reasons of failure to set mtime may be swallowed, * and can be multiple, ranging from "file not found" to cases when FS does not support the setting the mtime. - * @since TBD + * @since 2.0.0 */ void setLastModified(Path path, long value) throws IOException; @@ -122,7 +122,7 @@ default void copy(Path source, Path target) throws IOException { * @param target The file to copy to, must not be {@code null}. * @throws IOException If an I/O error occurs. * @see #setLastModified(Path, long) - * @since TBD + * @since 2.0.0 */ default void copyWithTimestamp(Path source, Path target) throws IOException { copy(source, target, null);