Removed pointless and incorrect hitTest() override.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1537 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-06-25 01:19:08 +00:00
parent 5d7decd03b
commit b45bfb9ad3
@@ -1,5 +1,5 @@
//
// $Id: ObjectTile.java,v 1.10 2002/06/21 18:52:36 mdb Exp $
// $Id: ObjectTile.java,v 1.11 2002/06/25 01:19:08 mdb Exp $
package com.threerings.media.tile;
@@ -101,19 +101,6 @@ public class ObjectTile extends Tile
_originY = y;
}
/**
* Returns true if the object tile's bounds contain the specified
* point, and if there is a non-transparent pixel in the tile image at
* the specified point, false if not.
*
* @param x the x offset into the object tile's bounds to test.
* @param y the y offset into the object tile's bounds to test.
*/
public boolean hitTest (int x, int y)
{
return ImageUtil.hitTest(_image, x, y);
}
// documentation inherited
public void toString (StringBuffer buf)
{