kourendlibrary: replace final static with static final
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user