Added toString to IslandDeletion class for debugging use.

This commit is contained in:
tastybento 2019-06-28 16:46:39 -07:00
parent a147f3fda7
commit 006305f7cf

View File

@ -233,5 +233,15 @@ public class IslandDeletion implements DataObject {
this.box = box;
}
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
return "IslandDeletion [uniqueId=" + uniqueId + ", location=" + location + ", minXChunk=" + minXChunk
+ ", maxXChunk=" + maxXChunk + ", minZChunk=" + minZChunk + ", maxZChunk=" + maxZChunk + ", minX="
+ minX + ", minZ=" + minZ + ", maxX=" + maxX + ", maxZ=" + maxZ + ", box=" + box + "]";
}
}