Removed debug logging.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1529 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-06-21 20:16:34 +00:00
parent d756fa50cd
commit e2219ca3b0
@@ -1,5 +1,5 @@
// //
// $Id: TileSetBundler.java,v 1.7 2002/06/21 18:53:13 mdb Exp $ // $Id: TileSetBundler.java,v 1.8 2002/06/21 20:16:34 mdb Exp $
package com.threerings.media.tile.bundle.tools; package com.threerings.media.tile.bundle.tools;
@@ -308,14 +308,12 @@ public class TileSetBundler
return ImageIO.read(source); return ImageIO.read(source);
} }
}); });
// create a trimmed object tileset, which will write // create a trimmed object tileset, which will write
// the trimmed tileset image to the jar output stream // the trimmed tileset image to the jar output stream
TrimmedObjectTileSet tset = TrimmedObjectTileSet tset =
TrimmedObjectTileSet.trimObjectTileSet( TrimmedObjectTileSet.trimObjectTileSet(
(ObjectTileSet)set, jar); (ObjectTileSet)set, jar);
tset.setImagePath(imagePath); tset.setImagePath(imagePath);
Log.info("Trimmed! " + tset);
// replace the original set with the trimmed tileset // replace the original set with the trimmed tileset
// in the tileset bundle // in the tileset bundle
bundle.addTileSet(tileSetId, tset); bundle.addTileSet(tileSetId, tset);