allow more than one author

This commit is contained in:
kashike
2018-08-21 09:09:48 -07:00
parent a028467e66
commit c4fdac9591
9 changed files with 50 additions and 40 deletions

View File

@@ -8,6 +8,8 @@ import org.checkerframework.checker.nullness.qual.NonNull;
import java.nio.file.Path;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Optional;
public class FakePluginManager implements PluginManager {
@@ -78,8 +80,8 @@ public class FakePluginManager implements PluginManager {
}
@Override
public String getAuthor() {
return "";
public List<String> getAuthors() {
return Collections.emptyList();
}
};
}