Being able to easily log is good.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6649 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Dave Hoover
2011-06-02 22:36:04 +00:00
parent a27291b430
commit 5b1e29432b
2 changed files with 13 additions and 0 deletions
@@ -21,4 +21,10 @@ public class Point
this.x = x;
this.y = y;
}
@Override
public String toString ()
{
return getClass().getName() + "[x=" + x + ",y=" + y + "]";
}
}
@@ -75,4 +75,11 @@ public class Rectangle
this.width = width;
this.height = height;
}
@Override
public String toString ()
{
return getClass().getName() +
"[x=" + x + ",y=" + y + ",width=" + width + ",height=" + height + "]";
}
}