Note that these classes are immutable.

This commit is contained in:
Andrew Steinborn 2018-08-21 22:45:55 -04:00
parent 2b6786e1fa
commit 3ed499c7c0
2 changed files with 4 additions and 4 deletions

View File

@ -7,9 +7,9 @@ import java.util.Objects;
/**
* Reperesents a legacy channel identifier (for Minecraft 1.12 and below). For modern 1.13 plugin messages, please see
* {@link MinecraftChannelIdentifier}.
* {@link MinecraftChannelIdentifier}. This class is immutable and safe for multi-threaded use.
*/
public class LegacyChannelIdentifier implements ChannelIdentifier {
public final class LegacyChannelIdentifier implements ChannelIdentifier {
private final String name;
public LegacyChannelIdentifier(String name) {

View File

@ -7,9 +7,9 @@ import java.util.Objects;
import java.util.regex.Pattern;
/**
* Represents a Minecraft 1.13+ channel identifier.
* Represents a Minecraft 1.13+ channel identifier. This class is immutable and safe for multi-threaded use.
*/
public class MinecraftChannelIdentifier implements ChannelIdentifier {
public final class MinecraftChannelIdentifier implements ChannelIdentifier {
private static final Pattern VALID_IDENTIFIER_REGEX = Pattern.compile("[a-z0-9\\-_]+");
private final String namespace;