Skip to content

Commit

Permalink
fix javadoc warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
shikhar committed Jun 19, 2011
1 parent 114c2bb commit fb0f3af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/schmizz/concurrent/Event.java
Expand Up @@ -73,8 +73,8 @@ public void deliverError(Throwable t) {
}

/**
* @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();
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/net/schmizz/sshj/xfer/LocalDestFile.java
Expand Up @@ -45,7 +45,6 @@ LocalDestFile getTargetDirectory(String dirname)
/**
* Set the permissions for the underlying file.
*
* @param f the file
* @param perms permissions e.g. 0644
*
* @throws IOException
Expand All @@ -66,7 +65,6 @@ void setLastAccessedTime(long t)
/**
* Set the last modified time for the underlying file.
*
* @param f the file
* @param t time in seconds since Unix epoch
*
* @throws IOException
Expand Down

0 comments on commit fb0f3af

Please sign in to comment.