Formatting changes:

- removed tabs
- explicitly specify imports
- I made each comment a complete and punctuated sentance.
- other minor convention changes


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1155 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2002-03-26 23:35:02 +00:00
parent 0251b8f19f
commit 1a53da6727
6 changed files with 263 additions and 251 deletions
@@ -1,5 +1,5 @@
//
// $Id: ObjectTileLayer.java,v 1.2 2002/03/26 20:17:51 ray Exp $
// $Id: ObjectTileLayer.java,v 1.3 2002/03/26 23:35:01 ray Exp $
package com.threerings.media.tile;
@@ -57,7 +57,7 @@ public final class ObjectTileLayer
*/
public ObjectTile getTile (int column, int row)
{
return (ObjectTile) _tiles.get(IsoUtil.coordsToKey(column, row));
return (ObjectTile) _tiles.get(IsoUtil.coordsToKey(column, row));
}
/**
@@ -67,15 +67,15 @@ public final class ObjectTileLayer
*/
public void setTile (int column, int row, ObjectTile tile)
{
_tiles.put(IsoUtil.coordsToKey(column, row), tile);
_tiles.put(IsoUtil.coordsToKey(column, row), tile);
}
/**
* Removes the tile at the specified row and column
* Removes the tile at the specified row and column.
*/
public void clearTile (int column, int row)
{
_tiles.remove(IsoUtil.coordsToKey(column, row));
_tiles.remove(IsoUtil.coordsToKey(column, row));
}
/** Our tiles. */