forgot to run checkstyle

Signed-off-by: PKLite <stonewall@pklite.xyz>
This commit is contained in:
PKLite
2019-06-13 13:11:11 -04:00
parent d2e50f83fd
commit 8cd41f4c5e
2 changed files with 2 additions and 4 deletions

View File

@@ -33,11 +33,9 @@ import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.image.BufferedImage;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.Objects;
import java.util.stream.IntStream;
import javax.swing.BorderFactory;
import javax.swing.BoxLayout;
import javax.swing.ImageIcon;

View File

@@ -749,11 +749,11 @@ public class LootTrackerPlugin extends Plugin
// If it's a death we want to get a coin value for untradeables lost
if (!itemDefinition.isTradeable() && quantity < 0)
{
price = (long) itemDefinition.getPrice() *(long) quantity;
price = (long) itemDefinition.getPrice() * (long) quantity;
}
else
{
price =(long) itemManager.getItemPrice(realItemId) * (long) quantity;
price = (long) itemManager.getItemPrice(realItemId) * (long) quantity;
}
final boolean ignored = ignoredItems.contains(itemDefinition.getName());