diff --git a/src/main/java/net/schmizz/concurrent/Event.java b/src/main/java/net/schmizz/concurrent/Event.java index ad2ea95e..ece35c6e 100644 --- a/src/main/java/net/schmizz/concurrent/Event.java +++ b/src/main/java/net/schmizz/concurrent/Event.java @@ -73,8 +73,8 @@ public class Event { } /** - * @return whether this event is in a 'set' state. An event is set by a call to {@link set()} or {@link - * deliverError} + * @return whether this event is in a 'set' state. An event is set by a call to {@link #set} or {@link + * #deliverError} */ public boolean isSet() { return promise.isDelivered(); diff --git a/src/main/java/net/schmizz/sshj/xfer/LocalDestFile.java b/src/main/java/net/schmizz/sshj/xfer/LocalDestFile.java index 7515afb9..cdcb0c5f 100644 --- a/src/main/java/net/schmizz/sshj/xfer/LocalDestFile.java +++ b/src/main/java/net/schmizz/sshj/xfer/LocalDestFile.java @@ -45,7 +45,6 @@ public interface LocalDestFile { /** * Set the permissions for the underlying file. * - * @param f the file * @param perms permissions e.g. 0644 * * @throws IOException @@ -66,7 +65,6 @@ public interface LocalDestFile { /** * Set the last modified time for the underlying file. * - * @param f the file * @param t time in seconds since Unix epoch * * @throws IOException