fix javadoc warnings

This commit is contained in:
Shikhar Bhushan
2011-06-19 18:30:52 +01:00
parent 114c2bb424
commit fb0f3afa17
2 changed files with 2 additions and 4 deletions

View File

@@ -73,8 +73,8 @@ public class Event<T extends Throwable> {
} }
/** /**
* @return whether this event is in a 'set' state. An event is set by a call to {@link set()} or {@link * @return whether this event is in a 'set' state. An event is set by a call to {@link #set} or {@link
* deliverError} * #deliverError}
*/ */
public boolean isSet() { public boolean isSet() {
return promise.isDelivered(); return promise.isDelivered();

View File

@@ -45,7 +45,6 @@ public interface LocalDestFile {
/** /**
* Set the permissions for the underlying file. * Set the permissions for the underlying file.
* *
* @param f the file
* @param perms permissions e.g. 0644 * @param perms permissions e.g. 0644
* *
* @throws IOException * @throws IOException
@@ -66,7 +65,6 @@ public interface LocalDestFile {
/** /**
* Set the last modified time for the underlying file. * Set the last modified time for the underlying file.
* *
* @param f the file
* @param t time in seconds since Unix epoch * @param t time in seconds since Unix epoch
* *
* @throws IOException * @throws IOException