From 2ac4bc7939bd4698361e62fd075d6bdcbfe289d4 Mon Sep 17 00:00:00 2001 From: asofold Date: Tue, 8 Dec 2015 19:23:00 +0100 Subject: [PATCH] Less comma. --- .../nocheatplus/checks/net/model/CountableLocation.java | 2 +- .../neatmonster/nocheatplus/checks/net/model/DataLocation.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/CountableLocation.java b/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/CountableLocation.java index e58ada4e..8fcf14a2 100644 --- a/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/CountableLocation.java +++ b/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/CountableLocation.java @@ -22,7 +22,7 @@ public class CountableLocation extends DataLocation { public String toString() { final StringBuilder builder = new StringBuilder(256); builder.append("CountableLocation("); - builder.append(",x="); + builder.append("x="); builder.append(x); builder.append(",y="); builder.append(y); diff --git a/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/DataLocation.java b/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/DataLocation.java index 781627f9..e92f31c0 100644 --- a/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/DataLocation.java +++ b/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/DataLocation.java @@ -49,7 +49,7 @@ public class DataLocation { public String toString() { final StringBuilder builder = new StringBuilder(256); builder.append("Location("); - builder.append(",x="); + builder.append("x="); builder.append(x); builder.append(",y="); builder.append(y);