Skip to content

Commit

Permalink
Fix since javadoc tags
Browse files Browse the repository at this point in the history
  • Loading branch information
cstamas committed Apr 26, 2024
1 parent c90a97b commit 2e67850
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -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;

Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 2e67850

Please sign in to comment.