checkstyle: enforce whitespace after comma
This commit is contained in:
@@ -40,6 +40,9 @@
|
|||||||
<property name="ignoreComments" value="true"/>
|
<property name="ignoreComments" value="true"/>
|
||||||
</module>
|
</module>
|
||||||
<module name="WhitespaceAround"/>
|
<module name="WhitespaceAround"/>
|
||||||
|
<module name="WhitespaceAfter">
|
||||||
|
<property name="tokens" value="COMMA"/>
|
||||||
|
</module>
|
||||||
<module name="UnusedImports"/>
|
<module name="UnusedImports"/>
|
||||||
<module name="SuppressionCommentFilter"/>
|
<module name="SuppressionCommentFilter"/>
|
||||||
</module>
|
</module>
|
||||||
|
|||||||
@@ -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),
|
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),
|
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),
|
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),
|
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),
|
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),
|
CLUE173("This anagram reveals who to speak to next: ARE COL", "Oracle", "Ice Mountain West of Edgeville", "48", ANAGRAM),
|
||||||
|
|||||||
@@ -78,7 +78,7 @@ class XpPanel extends PluginPanel
|
|||||||
layoutPanel.add(totalPanel, BorderLayout.NORTH);
|
layoutPanel.add(totalPanel, BorderLayout.NORTH);
|
||||||
|
|
||||||
final JPanel infoBoxPanel = new JPanel();
|
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);
|
layoutPanel.add(infoBoxPanel, BorderLayout.CENTER);
|
||||||
|
|
||||||
try
|
try
|
||||||
|
|||||||
@@ -217,7 +217,7 @@ public class OverlayRenderer
|
|||||||
final Point bottomRightPoint = new Point();
|
final Point bottomRightPoint = new Point();
|
||||||
bottomRightPoint.move(bounds.x + bounds.width - BORDER_RIGHT, bounds.y + bounds.height - BORDER_BOTTOM);
|
bottomRightPoint.move(bounds.x + bounds.width - BORDER_RIGHT, bounds.y + bounds.height - BORDER_BOTTOM);
|
||||||
final Point rightChatboxPoint = new Point();
|
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
|
//check to see if Chatbox is minimized
|
||||||
if (chatbox != null && client.isResized() && chatbox.isHidden())
|
if (chatbox != null && client.isResized() && chatbox.isHidden())
|
||||||
|
|||||||
Reference in New Issue
Block a user