Skip to content

Commit

Permalink
Probably a nice touch to set a default.
Browse files Browse the repository at this point in the history
Not that NPEing when you don't go out of
your way to use the new stuff isn't fun...
  • Loading branch information
deadmoose committed Dec 3, 2012
1 parent 3e5fa8e commit 14e6d93
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,11 @@ public void create ()

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;
}
Expand Down

0 comments on commit 14e6d93

Please # to comment.