Add Velocity module

This commit is contained in:
Alexander Söderberg 2020-09-19 15:50:44 +02:00
parent ccd0e8ae0e
commit f1d4e7865d
No known key found for this signature in database
GPG key ID: C0207FF7EA146678
17 changed files with 566 additions and 22 deletions

View file

@ -55,7 +55,6 @@ import java.util.regex.Pattern;
* Parser that parses class instances {@link com.intellectualsites.commands.Command commands}
*
* @param <C> Command sender type
* @param <M> Command meta type
*/
public final class AnnotationParser<C> {

View file

@ -38,7 +38,7 @@ import java.util.concurrent.CompletionException;
class AnnotationParserTest {
private static CommandManager<TestCommandSender> manager;
private static AnnotationParser<TestCommandSender, SimpleCommandMeta> annotationParser;
private static AnnotationParser<TestCommandSender> annotationParser;
@BeforeAll
static void setup() {