Fix spacing

This commit is contained in:
Len 2022-10-04 09:22:52 +02:00
parent 69d90e16b5
commit dccbaea32b

View File

@ -358,11 +358,11 @@ public class PlayerShop {
@Override @Override
public String toString() { public String toString() {
return "Shop: " + this.getShopID() return "Shop: " + this.getShopID()
+ "type :" + this.type + " type :" + this.type
+ "server :" + this.server + " server :" + this.server
+ "price :" + this.price + " price :" + this.price
+ "amount :" + this.amount + " amount :" + this.amount
+ "balance :" + this.balance + " balance :" + this.balance
+ "lastTransaction :" + this.lastTransaction; + " lastTransaction :" + this.lastTransaction;
} }
} }