buildLinkPanel no longer static

This commit is contained in:
James Munson
2019-07-01 15:50:29 -07:00
parent 81ee1f9fba
commit 3b96dcf8a5

View File

@@ -199,7 +199,7 @@ public class InfoPanel extends PluginPanel
/** /**
* Builds a link panel with a given icon, text and callable to call. * Builds a link panel with a given icon, text and callable to call.
*/ */
private static JPanel buildLinkPanel(ImageIcon icon, String topText, String bottomText, Runnable callback) private JPanel buildLinkPanel(ImageIcon icon, String topText, String bottomText, Runnable callback)
{ {
JPanel container = new JPanel(); JPanel container = new JPanel();
container.setBackground(ColorScheme.DARKER_GRAY_COLOR); container.setBackground(ColorScheme.DARKER_GRAY_COLOR);