add PlayerPropertyData::toString

This commit is contained in:
Bixilon 2020-11-18 21:23:46 +01:00
parent 915eeab020
commit 8ebcc20b82
No known key found for this signature in database
GPG Key ID: 5CAD791931B09AC4

View File

@ -28,11 +28,16 @@ public class PlayerPropertyData {
return this.name;
}
public String getValue() {
return value;
}
public String getSignature() {
return signature;
}
public String getValue() {
return value;
@Override
public String toString() {
return String.format("%s=%s", getName(), getValue());
}
}