Probably a nice touch to set a default.

Not that NPEing when you don't go out of
your way to use the new stuff isn't fun...
This commit is contained in:
David Hoover
2012-12-03 10:44:28 -08:00
committed by Michael Bayne
parent 9e87bc3519
commit b65ca9b144
@@ -205,7 +205,11 @@ public class TileSetBundler
boolean trim = true;
boolean raw = true;
Supplier<TileSetTrimmer.Packer> packer;
Supplier<TileSetTrimmer.Packer> packer = new Supplier<TileSetTrimmer.Packer>() {
public TileSetTrimmer.Packer get () {
return new TileSetTrimmer.StripPacker();
}
};
String imageBase;
JSONConversion.Config json;
}