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;
|
return this.name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
public String getSignature() {
|
public String getSignature() {
|
||||||
return signature;
|
return signature;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getValue() {
|
@Override
|
||||||
return value;
|
public String toString() {
|
||||||
|
return String.format("%s=%s", getName(), getValue());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user