Fix formatting

This commit is contained in:
Alexander Meech 2018-01-07 05:43:02 -05:00
parent 675594c8bd
commit 6ac9fd1eed

View File

@ -29,7 +29,8 @@ public class MultiPageManager<ItemType>
public MultiPageManager(ShopPageBase shopPage, Supplier<List<ItemType>> getItems, BiConsumer<ItemType, Integer> addItem)
{
this(shopPage, getItems, (item, slot)-> {
this(shopPage, getItems, (item, slot)->
{
addItem.accept(item, slot);
return true;
});