From 804c4d306366dd8b3b904cb1994f77aa37553094 Mon Sep 17 00:00:00 2001 From: Ganom Date: Sat, 25 Jan 2020 16:42:04 -0500 Subject: [PATCH] tmorph: change name of panel. --- .../net/runelite/client/plugins/tmorph/ui/TPanel.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/tmorph/ui/TPanel.java b/runelite-client/src/main/java/net/runelite/client/plugins/tmorph/ui/TPanel.java index 6c22369940..3331a9257d 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/tmorph/ui/TPanel.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/tmorph/ui/TPanel.java @@ -159,7 +159,7 @@ public class TPanel extends PluginPanel northAnchoredPanel.add(Box.createRigidArea(new Dimension(0, 10))); northAnchoredPanel.add(selector); - final JPanel lol = new JPanel(); + final JPanel containerHolder = new JPanel(); final JPanel containerPanel = new JPanel(); final JLabel caption = new JLabel(); @@ -179,12 +179,12 @@ public class TPanel extends PluginPanel containerPanel.add(captionPanel, BorderLayout.NORTH); containerPanel.add(equipPanel, BorderLayout.CENTER); - lol.add(containerPanel); + containerHolder.add(containerPanel); final JPanel contentPanel = new JPanel(); final BoxLayout contentLayout = new BoxLayout(contentPanel, Y_AXIS); contentPanel.setLayout(contentLayout); - contentPanel.add(lol); + contentPanel.add(containerHolder); final JPanel contentWrapper = new JPanel(new BorderLayout()); contentWrapper.add(Box.createGlue(), BorderLayout.CENTER); @@ -294,7 +294,7 @@ public class TPanel extends PluginPanel if (client.getGameState() == GameState.LOGGED_IN) { - Map s = generate(false); + generate(false); } } });