Fix wrong access modifier

This commit is contained in:
AlexDev_ 2023-11-09 16:15:05 +01:00
parent 3d3f3a3bfa
commit 7eb8f2dbd1

View File

@ -54,19 +54,19 @@ public class PlayerAddedToTabEvent {
@NotNull @NotNull
@Deprecated(forRemoval = true) @Deprecated(forRemoval = true)
private TabPlayer player() { public TabPlayer player() {
return this.player; return this.player;
} }
@NotNull @NotNull
@Deprecated(forRemoval = true) @Deprecated(forRemoval = true)
private String group() { public String group() {
return this.group; return this.group;
} }
@NotNull @NotNull
@Deprecated(forRemoval = true) @Deprecated(forRemoval = true)
private List<String> groupServers() { public List<String> groupServers() {
return this.groupServers; return this.groupServers;
} }
} }