From fb0f3afa1799d2b9ac80d61336dd4f37675e216d Mon Sep 17 00:00:00 2001 From: Shikhar Bhushan Date: Sun, 19 Jun 2011 18:30:52 +0100 Subject: [PATCH] fix javadoc warnings --- src/main/java/net/schmizz/concurrent/Event.java | 4 ++-- src/main/java/net/schmizz/sshj/xfer/LocalDestFile.java | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) 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