From bba21a1bc3e6dbc86563eed2d2725fa7c99b088c Mon Sep 17 00:00:00 2001 From: Minecon724 Date: Thu, 24 Oct 2024 13:54:03 +0200 Subject: [PATCH] Remove nag --- src/main/java/eu/m724/jarupdater/live/MetadataDAO.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/eu/m724/jarupdater/live/MetadataDAO.java b/src/main/java/eu/m724/jarupdater/live/MetadataDAO.java index 99e26cb..1c6afc2 100644 --- a/src/main/java/eu/m724/jarupdater/live/MetadataDAO.java +++ b/src/main/java/eu/m724/jarupdater/live/MetadataDAO.java @@ -10,7 +10,7 @@ public interface MetadataDAO { * get available channels online * @return a future which can throw ioexception */ - public CompletableFuture> getChannels(); + CompletableFuture> getChannels(); /** * get metadata of a version in channel @@ -18,5 +18,5 @@ public interface MetadataDAO { * @param versionLabel * @return a future which can throw ioexcpeitons or nosuchfilexxception */ - public CompletableFuture getMetadata(String channel, String versionLabel); + CompletableFuture getMetadata(String channel, String versionLabel); }