checkstyle - extended-mixins
This commit is contained in:
@@ -533,8 +533,7 @@ public class Client
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
public void invokeMenuAction(int actionParam, int widgetId, int opcode, int targetId, String menuOption,
|
public void invokeMenuAction(int actionParam, int widgetId, int opcode, int targetId, String menuOption, String menuTarget, int mouseX, int mouseY)
|
||||||
String menuTarget, int mouseX, int mouseY)
|
|
||||||
{
|
{
|
||||||
_Statics_.menuAction(actionParam, widgetId, opcode, targetId, menuOption,
|
_Statics_.menuAction(actionParam, widgetId, opcode, targetId, menuOption,
|
||||||
menuTarget, mouseX, mouseY);
|
menuTarget, mouseX, mouseY);
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ public class Player
|
|||||||
@Overwrite
|
@Overwrite
|
||||||
public SkullIcon getSkullIcon()
|
public SkullIcon getSkullIcon()
|
||||||
{
|
{
|
||||||
switch(getHeadIconPk())
|
switch (getHeadIconPk())
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
return SkullIcon.SKULL;
|
return SkullIcon.SKULL;
|
||||||
|
|||||||
@@ -43,10 +43,10 @@ public class Scene
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(renderable instanceof RSPlayer)
|
if (renderable instanceof RSPlayer)
|
||||||
{
|
{
|
||||||
RSPlayer p = (RSPlayer) renderable;
|
RSPlayer p = (RSPlayer) renderable;
|
||||||
if(Client.hideClanMates && p.isClanMember())
|
if (Client.hideClanMates && p.isClanMember())
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -41,10 +41,10 @@ public class _Statics_
|
|||||||
static final void prepend$menuAction(int actionParam, int widgetId, int opcode, int targetId, String menuOption,
|
static final void prepend$menuAction(int actionParam, int widgetId, int opcode, int targetId, String menuOption,
|
||||||
String menuTarget, int mouseX, int mouseY)
|
String menuTarget, int mouseX, int mouseY)
|
||||||
{
|
{
|
||||||
if(Client.printMenuActions)
|
if (Client.printMenuActions)
|
||||||
{
|
{
|
||||||
int printOpcode = opcode;
|
int printOpcode = opcode;
|
||||||
if(opcode >= 2000)
|
if (opcode >= 2000)
|
||||||
{
|
{
|
||||||
printOpcode -= 2000;
|
printOpcode -= 2000;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user