From dccbaea32b327197d5f59a9a44a0fb114276566b Mon Sep 17 00:00:00 2001 From: Len <40720638+destro174@users.noreply.github.com> Date: Tue, 4 Oct 2022 09:22:52 +0200 Subject: [PATCH] Fix spacing --- .../java/com/alttd/playershops/shop/PlayerShop.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/alttd/playershops/shop/PlayerShop.java b/src/main/java/com/alttd/playershops/shop/PlayerShop.java index f07ea19..737a77a 100644 --- a/src/main/java/com/alttd/playershops/shop/PlayerShop.java +++ b/src/main/java/com/alttd/playershops/shop/PlayerShop.java @@ -358,11 +358,11 @@ public class PlayerShop { @Override public String toString() { return "Shop: " + this.getShopID() - + "type :" + this.type - + "server :" + this.server - + "price :" + this.price - + "amount :" + this.amount - + "balance :" + this.balance - + "lastTransaction :" + this.lastTransaction; + + " type :" + this.type + + " server :" + this.server + + " price :" + this.price + + " amount :" + this.amount + + " balance :" + this.balance + + " lastTransaction :" + this.lastTransaction; } }