Remove nag
This commit is contained in:
parent
3056f14d0a
commit
bba21a1bc3
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue