Override metatypeimpl tostring

This commit is contained in:
Nassim Jahnke 2023-03-28 17:27:22 +02:00
parent c46bb5bcf5
commit e54f6d1999
No known key found for this signature in database
GPG Key ID: 6BE3B555EBC5982B

View File

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