Fix indenting and accidental annotations
This commit is contained in:
@@ -436,7 +436,6 @@ public class ChatCommandsPlugin extends Plugin
|
||||
return true;
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
private void killCountLookup(ChatMessage chatMessage, String message)
|
||||
{
|
||||
if (!config.killcount())
|
||||
@@ -524,7 +523,6 @@ public class ChatCommandsPlugin extends Plugin
|
||||
return true;
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
private void duelArenaLookup(ChatMessage chatMessage, String message)
|
||||
{
|
||||
if (!config.duels())
|
||||
@@ -582,7 +580,6 @@ public class ChatCommandsPlugin extends Plugin
|
||||
client.refreshChat();
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
private void questPointsLookup(ChatMessage chatMessage, String message)
|
||||
{
|
||||
if (!config.qp())
|
||||
@@ -651,7 +648,6 @@ public class ChatCommandsPlugin extends Plugin
|
||||
return true;
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
private void gambleCountLookup(ChatMessage chatMessage, String message)
|
||||
{
|
||||
if (!config.gc())
|
||||
@@ -723,7 +719,6 @@ public class ChatCommandsPlugin extends Plugin
|
||||
}
|
||||
|
||||
|
||||
@Subscribe
|
||||
private void personalBestLookup(ChatMessage chatMessage, String message)
|
||||
{
|
||||
if (!config.pb())
|
||||
@@ -820,7 +815,6 @@ public class ChatCommandsPlugin extends Plugin
|
||||
* @param chatMessage The chat message containing the command.
|
||||
* @param message The chat message
|
||||
*/
|
||||
@Subscribe
|
||||
private void itemPriceLookup(ChatMessage chatMessage, String message)
|
||||
{
|
||||
if (!config.price())
|
||||
@@ -892,7 +886,6 @@ public class ChatCommandsPlugin extends Plugin
|
||||
* @param chatMessage The chat message containing the command.
|
||||
* @param message The chat message
|
||||
*/
|
||||
@Subscribe
|
||||
private void playerSkillLookup(ChatMessage chatMessage, String message)
|
||||
{
|
||||
if (!config.lvl())
|
||||
@@ -967,7 +960,6 @@ public class ChatCommandsPlugin extends Plugin
|
||||
}
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
private void combatLevelLookup(ChatMessage chatMessage, String message)
|
||||
{
|
||||
if (!config.lvl())
|
||||
@@ -1053,7 +1045,6 @@ public class ChatCommandsPlugin extends Plugin
|
||||
}
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
private void clueLookup(ChatMessage chatMessage, String message)
|
||||
{
|
||||
if (!config.clue())
|
||||
|
||||
@@ -270,7 +270,6 @@ public class ChatNotificationsPlugin extends Plugin
|
||||
return (message.getName() + message.getMessage()).hashCode();
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
private void sendNotification(ChatMessage message)
|
||||
{
|
||||
String name = Text.removeTags(message.getName());
|
||||
|
||||
@@ -538,7 +538,6 @@ public class ClanChatPlugin extends Plugin
|
||||
return clanMembers.size();
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
private void insertClanRankIcon(final ChatMessage message)
|
||||
{
|
||||
final ClanMemberRank rank = clanManager.getRank(message.getName());
|
||||
|
||||
@@ -102,16 +102,6 @@ public class ExaminePlugin extends Plugin
|
||||
@Inject
|
||||
private ScheduledExecutorService executor;
|
||||
|
||||
@Override
|
||||
protected void startUp() throws Exception
|
||||
{
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void shutDown() throws Exception
|
||||
{
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
private void onGameStateChanged(GameStateChanged event)
|
||||
{
|
||||
|
||||
@@ -55,16 +55,6 @@ public class MaxHitPlugin extends Plugin
|
||||
@Inject
|
||||
private Client client;
|
||||
|
||||
@Override
|
||||
protected void startUp() throws Exception
|
||||
{
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void shutDown() throws Exception
|
||||
{
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
private void onItemContainerChanged(final ItemContainerChanged event)
|
||||
{
|
||||
|
||||
@@ -1130,7 +1130,6 @@ public class SlayerPlugin extends Plugin
|
||||
counter = null;
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
void taskLookup(ChatMessage chatMessage, String message)
|
||||
{
|
||||
if (!this.taskCommand)
|
||||
@@ -1206,7 +1205,6 @@ public class SlayerPlugin extends Plugin
|
||||
client.refreshChat();
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
private void pointsLookup(ChatMessage chatMessage, String message)
|
||||
{
|
||||
if (!this.pointsCommand)
|
||||
|
||||
Reference in New Issue
Block a user