mirror of
https://gitlab.bixilon.de/bixilon/minosoft.git
synced 2025-09-15 10:25:06 -04:00
add PlayerPropertyData::toString
This commit is contained in:
parent
915eeab020
commit
8ebcc20b82
@ -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());
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user