Renamed stuff in pom and changed to appendTemplate

This commit is contained in:
Teriuihi 2021-09-20 23:01:06 +02:00
parent 6baf52b248
commit 31cde0bba0
2 changed files with 4 additions and 5 deletions

View File

@ -4,9 +4,9 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId> <groupId>com.alttd</groupId>
<artifactId>ShutdownInfo</artifactId> <artifactId>ShutdownInfo</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0</version>
<properties> <properties>
<maven.compiler.source>16</maven.compiler.source> <maven.compiler.source>16</maven.compiler.source>

View File

@ -9,7 +9,7 @@ import java.util.List;
public class WhitelistKickEvent { public class WhitelistKickEvent {
private final Player player; private final Player player;
private String message; private String message;
List<Template> templates; private final List<Template> templates;
public WhitelistKickEvent(Player player, String message, List<Template> templates) { public WhitelistKickEvent(Player player, String message, List<Template> templates) {
this.player = player; this.player = player;
@ -28,6 +28,5 @@ public class WhitelistKickEvent {
return Collections.unmodifiableList(templates); return Collections.unmodifiableList(templates);
} }
public void appendTemplates(Template template) {this.templates.add(template);} public void appendTemplate(Template template) {this.templates.add(template);}
// public void appendTemplates(Template... templates) {this.templates.addAll(List.of(templates));}
} }