Remove nag

This commit is contained in:
Minecon724 2024-10-24 13:54:03 +02:00
parent 3056f14d0a
commit bba21a1bc3
Signed by: Minecon724
GPG key ID: 3CCC4D267742C8E8

View file

@ -10,7 +10,7 @@ public interface MetadataDAO {
* get available channels online
* @return a future which can throw ioexception
*/
public CompletableFuture<List<String>> getChannels();
CompletableFuture<List<String>> 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<Version> getMetadata(String channel, String versionLabel);
CompletableFuture<Version> getMetadata(String channel, String versionLabel);
}