Some further improvements to the security audit

This commit is contained in:
yueh
2015-03-05 14:52:00 +01:00
parent 0b15c56037
commit 1bcf7f9d52
3 changed files with 4 additions and 4 deletions
@@ -84,7 +84,7 @@ public class DimensionalCoord extends WorldCoord
@Override
public String toString()
{
return this.dimId + "," + super.toString();
return "dimension=" + this.dimId + ", " + super.toString();
}
public World getWorld()
+1 -1
View File
@@ -148,7 +148,7 @@ public class WorldCoord
@Override
public String toString()
{
return "" + this.x + "," + this.y + "," + this.z;
return "x=" + this.x + ", y=" + this.y + ", z=" + this.z;
}
@Override