Fix toString in Location to be readable

This commit is contained in:
Erik Broes 2011-09-18 11:48:00 +02:00
parent 627e2af265
commit 65fde9ee8c

View File

@ -420,7 +420,7 @@ public class Location implements Cloneable {
@Override @Override
public String toString() { public String toString() {
return "Location{" + "world=" + world + "x=" + x + "y=" + y + "z=" + z + "pitch=" + pitch + "yaw=" + yaw + '}'; return "Location{" + "world=" + world + ",x=" + x + ",y=" + y + ",z=" + z + ",pitch=" + pitch + ",yaw=" + yaw + '}';
} }
/** /**