3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-10-08 11:10:06 +02:00

Override metatypeimpl tostring

Dieser Commit ist enthalten in:
Nassim Jahnke 2023-03-28 17:27:22 +02:00
Ursprung c46bb5bcf5
Commit e54f6d1999
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 6BE3B555EBC5982B

Datei anzeigen

@ -63,6 +63,14 @@ public interface MetaType {
return type; return type;
} }
@Override
public String toString() {
return "MetaType{" +
"typeId=" + typeId +
", type=" + type +
'}';
}
@Override @Override
public boolean equals(final Object o) { public boolean equals(final Object o) {
if (this == o) return true; if (this == o) return true;