devtools: Remoe unused fields

This commit is contained in:
sdburns1998
2019-07-07 03:54:57 +02:00
parent 0bc32b0d5f
commit d4066523c1
2 changed files with 0 additions and 4 deletions

View File

@@ -86,7 +86,6 @@ class VarInspector extends JFrame
private final static int MAX_LOG_ENTRIES = 10_000;
private final Client client;
private final DevToolsPlugin plugin;
private final EventBus eventBus;
private final JPanel tracker = new JPanel();
@@ -104,7 +103,6 @@ class VarInspector extends JFrame
{
this.eventBus = eventBus;
this.client = client;
this.plugin = plugin;
setTitle("RuneLite Var Inspector");
setIconImage(ClientUI.ICON);

View File

@@ -63,7 +63,6 @@ class WidgetInspector extends JFrame
private final ClientThread clientThread;
private final DevToolsConfig config;
private final DevToolsOverlay overlay;
private final DevToolsPlugin plugin;
private final JTree widgetTree;
private final WidgetInfoTableModel infoTableModel;
@@ -86,7 +85,6 @@ class WidgetInspector extends JFrame
this.infoTableModel = infoTableModel;
this.config = config;
this.overlay = overlay;
this.plugin = plugin;
eventBus.register(this);