Remove nag
This commit is contained in:
parent
2c8b88ca52
commit
76fc16ca19
1 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ public interface Downloader {
|
|||
* @param sha256hex
|
||||
* @return a future which can throw ioexception or signatureexception
|
||||
*/
|
||||
public CompletableFuture<File> downloadAndVerify(String url, String sha256hex);
|
||||
CompletableFuture<File> downloadAndVerify(String url, String sha256hex);
|
||||
|
||||
/**
|
||||
* moves source into destination
|
||||
|
@ -18,5 +18,5 @@ public interface Downloader {
|
|||
* @param destination
|
||||
* @return a future which can throw ioexception
|
||||
*/
|
||||
public CompletableFuture<Void> install(File source, File destination);
|
||||
CompletableFuture<Void> install(File source, File destination);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue