whalewatchers: Final fields

This commit is contained in:
sdburns1998
2019-07-07 21:53:02 +02:00
parent f98fe21126
commit 9ed6759c83
4 changed files with 9 additions and 9 deletions

View File

@@ -28,8 +28,8 @@ import net.runelite.client.ui.overlay.components.TitleComponent;
@Singleton @Singleton
public class WhaleWatchersGloryOverlay extends Overlay public class WhaleWatchersGloryOverlay extends Overlay
{ {
private WhaleWatchersPlugin plugin; private final WhaleWatchersPlugin plugin;
private PanelComponent panelComponent; private final PanelComponent panelComponent;
@Inject @Inject
private ItemManager itemManager; private ItemManager itemManager;

View File

@@ -31,9 +31,9 @@ import net.runelite.client.ui.overlay.components.TitleComponent;
@Singleton @Singleton
public class WhaleWatchersOverlay extends Overlay public class WhaleWatchersOverlay extends Overlay
{ {
private Client client; private final Client client;
private WhaleWatchersPlugin plugin; private final WhaleWatchersPlugin plugin;
private PanelComponent panelComponent; private final PanelComponent panelComponent;
private String lastOpponent = "-"; private String lastOpponent = "-";

View File

@@ -34,8 +34,8 @@ import net.runelite.client.ui.overlay.OverlayUtil;
public class WhaleWatchersProtOverlay extends Overlay public class WhaleWatchersProtOverlay extends Overlay
{ {
private Client client; private final Client client;
private WhaleWatchersPlugin plugin; private final WhaleWatchersPlugin plugin;
@Inject @Inject
public WhaleWatchersProtOverlay(final Client client, final WhaleWatchersPlugin plugin) public WhaleWatchersProtOverlay(final Client client, final WhaleWatchersPlugin plugin)

View File

@@ -28,8 +28,8 @@ import net.runelite.client.ui.overlay.components.TitleComponent;
@Singleton @Singleton
public class WhaleWatchersSmiteableOverlay extends Overlay public class WhaleWatchersSmiteableOverlay extends Overlay
{ {
private WhaleWatchersPlugin plugin; private final WhaleWatchersPlugin plugin;
private PanelComponent panelComponent; private final PanelComponent panelComponent;
@Inject @Inject