From 76fc16ca1980bb5e1fbce5689be363e8ad1b00f8 Mon Sep 17 00:00:00 2001 From: Minecon724 Date: Thu, 24 Oct 2024 14:33:45 +0200 Subject: [PATCH] Remove nag --- src/main/java/eu/m724/jarupdater/download/Downloader.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/eu/m724/jarupdater/download/Downloader.java b/src/main/java/eu/m724/jarupdater/download/Downloader.java index 0cccc0a..d573f0f 100644 --- a/src/main/java/eu/m724/jarupdater/download/Downloader.java +++ b/src/main/java/eu/m724/jarupdater/download/Downloader.java @@ -10,7 +10,7 @@ public interface Downloader { * @param sha256hex * @return a future which can throw ioexception or signatureexception */ - public CompletableFuture downloadAndVerify(String url, String sha256hex); + CompletableFuture 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 install(File source, File destination); + CompletableFuture install(File source, File destination); }