1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-17 20:11:21 +02:00

Format everything using Netbeans

This commit is contained in:
snowleo
2013-04-07 15:00:40 +02:00
parent ee98136fc5
commit dbf0125eec
135 changed files with 1508 additions and 1643 deletions

View File

@@ -36,11 +36,11 @@
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>pircbot:pircbot</include>
</includes>
</artifactSet>
<artifactSet>
<includes>
<include>pircbot:pircbot</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>

View File

@@ -10,7 +10,6 @@ public abstract class AbstractWorkListener
this.plugin = plugin;
this.newVersionInfo = newVersionInfo;
}
private final Plugin plugin;
private final VersionInfo newVersionInfo;

View File

@@ -96,7 +96,8 @@ public class UpdateProcess implements Listener
{
UpdateProcess.this.currentPlayer = null;
}
//TODO: make sure this is threadsafe
//TODO: make sure this is threadsafe
@EventHandler(priority = EventPriority.LOWEST)
public void onPlayerChat(final AsyncPlayerChatEvent event)
{

View File

@@ -30,7 +30,6 @@ public class Version implements Comparable<Version>
{
return type;
}
private final int major;
private final int minor;
private final int build;

View File

@@ -14,8 +14,6 @@ public class StateMachine extends AbstractWorkListener implements Runnable
{
ABORT, WAIT, DONE, NONE
}
private final StateMap states = new StateMap();
private AbstractState current;
private Player player;
@@ -84,7 +82,6 @@ public class StateMachine extends AbstractWorkListener implements Runnable
}
return result;
}
private Iterator<AbstractState> iterator;
public void startWork()