kourendlibrary: replace final static with static final

This commit is contained in:
Hydrox6
2019-11-24 03:32:20 +00:00
parent 1a6c99d49d
commit 018a2365f8
2 changed files with 3 additions and 3 deletions

View File

@@ -52,7 +52,7 @@ import net.runelite.client.ui.overlay.OverlayUtil;
class KourendLibraryOverlay extends Overlay class KourendLibraryOverlay extends Overlay
{ {
private final static int MAXIMUM_DISTANCE = 24; private static final int MAXIMUM_DISTANCE = 24;
private final Library library; private final Library library;
private final Client client; private final Client client;
private final KourendLibraryConfig config; private final KourendLibraryConfig config;

View File

@@ -69,9 +69,9 @@ public class KourendLibraryPlugin extends Plugin
{ {
private static final Pattern BOOK_EXTRACTOR = Pattern.compile("'<col=0000ff>(.*)</col>'"); private static final Pattern BOOK_EXTRACTOR = Pattern.compile("'<col=0000ff>(.*)</col>'");
private static final Pattern TAG_MATCHER = Pattern.compile("(<[^>]*>)"); private static final Pattern TAG_MATCHER = Pattern.compile("(<[^>]*>)");
final static int REGION = 6459; static final int REGION = 6459;
final static boolean debug = false; static final boolean debug = false;
@Inject @Inject
private ClientToolbar clientToolbar; private ClientToolbar clientToolbar;