Fix checkstyle errors

This commit is contained in:
Andrew Fulton
2019-02-10 16:58:30 -06:00
parent 8bcc60fd53
commit ef712a1f9a
2 changed files with 6 additions and 2 deletions

View File

@@ -59,5 +59,8 @@ public interface MouseHighlightConfig extends Config
name = "Right Click Option Tooltips",
description = "Whether or not tooltips are shown for options that right-click only."
)
default boolean isRightClickTooltipEnabled() { return false; }
default boolean isRightClickTooltipEnabled()
{
return false;
}
}

View File

@@ -137,7 +137,8 @@ class MouseHighlightOverlay extends Overlay
return null;
}
private boolean isMenuActionRightClickOnly(int type) {
private boolean isMenuActionRightClickOnly(int type)
{
return type == MenuAction.RUNELITE_OVERLAY.getId()
|| type == MenuAction.EXAMINE_ITEM_BANK_EQ.getId();
}