Remove nag

This commit is contained in:
Minecon724 2024-10-24 14:33:45 +02:00
parent 2c8b88ca52
commit 76fc16ca19
Signed by: Minecon724
GPG key ID: 3CCC4D267742C8E8

View file

@ -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);
}