diff --git a/checkstyle.xml b/checkstyle.xml index 76626fa6dee..aa3bf946e47 100644 --- a/checkstyle.xml +++ b/checkstyle.xml @@ -40,6 +40,9 @@ + + + diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/cluescrolls/ClueScroll.java b/runelite-client/src/main/java/net/runelite/client/plugins/cluescrolls/ClueScroll.java index 90270294840..a1f626ec2be 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/cluescrolls/ClueScroll.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/cluescrolls/ClueScroll.java @@ -206,7 +206,7 @@ public enum ClueScroll CLUE167("This anagram reveals who to speak to next: LADDER MEMO GUV", "Guard Vemmeldo", "Gnome Stronghold Bank", "3", ANAGRAM), CLUE168("This anagram reveals who to speak to next: MAL IN TAU", "Luminata", "Near Burgh de Rott entrance", ANAGRAM), CLUE169("This anagram reveals who to speak to next: HEORIC", "Eohric", "Burthorpe Castle, top floor", "36", ANAGRAM), - CLUE170("This anagram reveals who to speak to next: GOBLETS ODD TOES", "Otto Godblessed", "Otto's Grotto","2", ANAGRAM), + CLUE170("This anagram reveals who to speak to next: GOBLETS ODD TOES", "Otto Godblessed", "Otto's Grotto", "2", ANAGRAM), CLUE171("This anagram reveals who to speak to next: LEAKEY", "Kaylee", "Rising Sun Inn in Falador", "18", ANAGRAM), CLUE172("This anagram reveals who to speak to next: WOO AN EGG KIWI", "Awowogei", "Ape Atoll", "24", ANAGRAM), CLUE173("This anagram reveals who to speak to next: ARE COL", "Oracle", "Ice Mountain West of Edgeville", "48", ANAGRAM), diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/xptracker/XpPanel.java b/runelite-client/src/main/java/net/runelite/client/plugins/xptracker/XpPanel.java index adee74ae5db..9d52589d998 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/xptracker/XpPanel.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/xptracker/XpPanel.java @@ -78,7 +78,7 @@ class XpPanel extends PluginPanel layoutPanel.add(totalPanel, BorderLayout.NORTH); final JPanel infoBoxPanel = new JPanel(); - infoBoxPanel.setLayout(new GridLayout(0,1,0,3)); + infoBoxPanel.setLayout(new GridLayout(0, 1, 0, 3)); layoutPanel.add(infoBoxPanel, BorderLayout.CENTER); try @@ -142,4 +142,4 @@ static String formatLine(double number, String description) return NumberFormat.getInstance().format(number) + " " + description; } -} \ No newline at end of file +} diff --git a/runelite-client/src/main/java/net/runelite/client/ui/overlay/OverlayRenderer.java b/runelite-client/src/main/java/net/runelite/client/ui/overlay/OverlayRenderer.java index a982962fcaa..7be716baf48 100644 --- a/runelite-client/src/main/java/net/runelite/client/ui/overlay/OverlayRenderer.java +++ b/runelite-client/src/main/java/net/runelite/client/ui/overlay/OverlayRenderer.java @@ -217,7 +217,7 @@ public void render(Graphics2D graphics, OverlayLayer layer) final Point bottomRightPoint = new Point(); bottomRightPoint.move(bounds.x + bounds.width - BORDER_RIGHT, bounds.y + bounds.height - BORDER_BOTTOM); final Point rightChatboxPoint = new Point(); - rightChatboxPoint.move(bounds.x + chatboxBounds.width - BORDER_RIGHT,bounds.y + bounds.height - BORDER_BOTTOM); + rightChatboxPoint.move(bounds.x + chatboxBounds.width - BORDER_RIGHT, bounds.y + bounds.height - BORDER_BOTTOM); //check to see if Chatbox is minimized if (chatbox != null && client.isResized() && chatbox.isHidden())