Proper code style environment package

This commit is contained in:
Clisprail
2014-02-19 23:41:19 +01:00
parent 37bd659b42
commit d236c21b18
12 changed files with 21 additions and 17 deletions
@@ -16,8 +16,8 @@ import org.parabot.core.classpath.ClassPath;
*/
public class LocalServerExecuter extends ServerExecuter {
private final ServerProvider serverProvider;
private ClassPath classPath = null;
private String serverName = null;
private ClassPath classPath;
private String serverName;
public LocalServerExecuter(ServerProvider serverProvider,
ClassPath classPath, final String serverName) {
@@ -23,8 +23,8 @@ import java.net.URL;
*
*/
public class PublicServerExecuter extends ServerExecuter {
private String serverName = null;
private String serverID = null;
private String serverName;
private String serverID;
public PublicServerExecuter(final String serverName, final String serverID) {
this.serverName = serverName;
@@ -17,7 +17,7 @@ import org.parabot.environment.servers.ServerProvider;
*
*/
public class ServerLoader extends ASMClassLoader {
private ClassPath classPath = null;
private ClassPath classPath;
public ServerLoader(ClassPath classPath) {
super(classPath);