config: (Package) private class/field/method

This commit is contained in:
sdburns1998
2019-07-07 04:54:19 +02:00
parent 71b00d32ae
commit 6207cb1f78
2 changed files with 3 additions and 3 deletions

View File

@@ -34,7 +34,7 @@ import net.runelite.client.config.Keybind;
import net.runelite.client.config.ModifierlessKeybind; import net.runelite.client.config.ModifierlessKeybind;
@Singleton @Singleton
public class HotkeyButton extends JButton class HotkeyButton extends JButton
{ {
@Getter(AccessLevel.PACKAGE) @Getter(AccessLevel.PACKAGE)
private Keybind value; private Keybind value;
@@ -63,7 +63,7 @@ public class HotkeyButton extends JButton
}); });
} }
public void setValue(Keybind value) private void setValue(Keybind value)
{ {
if (value == null) if (value == null)
{ {

View File

@@ -62,7 +62,7 @@ public class PluginListItem extends JPanel
private static final ImageIcon OFF_STAR; private static final ImageIcon OFF_STAR;
private final ConfigPanel configPanel; private final ConfigPanel configPanel;
public final ConfigManager configManager; private final ConfigManager configManager;
@Getter @Getter
@Nullable @Nullable