loottracker: Cleanup

This commit is contained in:
sdburns1998
2019-07-07 15:31:27 +02:00
parent 8e169be53c
commit 0cbfaf259a

View File

@@ -33,7 +33,6 @@ import com.google.common.collect.Multiset;
import com.google.common.collect.Multisets; import com.google.common.collect.Multisets;
import com.google.gson.Gson; import com.google.gson.Gson;
import com.google.gson.GsonBuilder; import com.google.gson.GsonBuilder;
import com.google.gson.JsonStreamParser;
import com.google.gson.reflect.TypeToken; import com.google.gson.reflect.TypeToken;
import com.google.inject.Provides; import com.google.inject.Provides;
import java.awt.image.BufferedImage; import java.awt.image.BufferedImage;
@@ -146,12 +145,10 @@ public class LootTrackerPlugin extends Plugin
12342, // Edgeville 12342, // Edgeville
11062 // Camelot 11062 // Camelot
); );
// Player deaths
public static HashSet<String> usernameSet = new HashSet<>(Arrays.stream(new String[]{"All Records"}).collect(Collectors.toList()));
@Inject @Inject
public Client client; public Client client;
@VisibleForTesting @VisibleForTesting
public Collection<LootRecord> lootRecords = new ArrayList<>(); private Collection<LootRecord> lootRecords = new ArrayList<>();
private boolean pvpDeath = false; private boolean pvpDeath = false;
@Inject @Inject
private ClientToolbar clientToolbar; private ClientToolbar clientToolbar;
@@ -176,7 +173,6 @@ public class LootTrackerPlugin extends Plugin
private Multiset<Integer> inventorySnapshot; private Multiset<Integer> inventorySnapshot;
@Getter(AccessLevel.PACKAGE) @Getter(AccessLevel.PACKAGE)
private LootTrackerClient lootTrackerClient; private LootTrackerClient lootTrackerClient;
private JsonStreamParser jsonStreamParser;
private static Collection<ItemStack> stack(Collection<ItemStack> items) private static Collection<ItemStack> stack(Collection<ItemStack> items)
{ {
@@ -305,7 +301,7 @@ public class LootTrackerPlugin extends Plugin
AccountSession accountSession = sessionManager.getAccountSession(); AccountSession accountSession = sessionManager.getAccountSession();
LOOT_RECORDS_FILE.createNewFile(); LOOT_RECORDS_FILE.createNewFile();
BufferedReader bufferedReader = Files.newBufferedReader(LOOT_RECORDS_FILE.toPath()); // BufferedReader bufferedReader = Files.newBufferedReader(LOOT_RECORDS_FILE.toPath());
if (accountSession != null || this.localPersistence) if (accountSession != null || this.localPersistence)
{ {
@@ -616,8 +612,6 @@ public class LootTrackerPlugin extends Plugin
@Subscribe @Subscribe
public void onItemContainerChanged(ItemContainerChanged event) public void onItemContainerChanged(ItemContainerChanged event)
{ {
final ItemContainer itemContainer = event.getItemContainer();
if (pvpDeath && RESPAWN_REGIONS.contains(client.getLocalPlayer().getWorldLocation().getRegionID())) if (pvpDeath && RESPAWN_REGIONS.contains(client.getLocalPlayer().getWorldLocation().getRegionID()))
{ {
Multiset snapshot; Multiset snapshot;