Skip to content

Commit 5328132

Browse files
committed
Javadoc.
1 parent 3f29f38 commit 5328132

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

core/src/main/java/ch/cyberduck/core/features/Download.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ public interface Download {
3535
* @param listener Progress callback
3636
* @param status Transfer status holder
3737
* @param callback Prompt
38-
* @throws BackgroundException
3938
*/
4039
void download(Path file, Local local, BandwidthThrottle throttle, StreamListener listener,
4140
TransferStatus status, ConnectionCallback callback) throws BackgroundException;

core/src/main/java/ch/cyberduck/core/features/Read.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public interface Read {
4343
* @param file File
4444
* @return True if read with offset is supported
4545
*/
46-
default boolean offset(Path file) throws BackgroundException {
46+
default boolean offset(final Path file) throws BackgroundException {
4747
if(this.features(file).contains(Flags.offset)) {
4848
return true;
4949
}
@@ -61,7 +61,7 @@ default void preflight(final Path file) throws BackgroundException {
6161
/**
6262
* @return Supported features
6363
*/
64-
default EnumSet<Flags> features(Path file) {
64+
default EnumSet<Flags> features(final Path file) {
6565
return EnumSet.of(Flags.offset);
6666
}
6767

core/src/main/java/ch/cyberduck/core/features/Upload.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ public interface Upload<Reply> {
3333
* @param file File on server
3434
* @param local File on local disk
3535
* @param throttle Bandwidth management
36-
* @param progress
37-
* @param streamListener Progress callback
36+
* @param progress Progress callback
37+
* @param streamListener Stream copy callback
3838
* @param status Transfer status holder
3939
* @param callback Prompt
4040
* @see AttributesAdapter#toAttributes(Reply)

0 commit comments

Comments
 (0)