mirror of
https://github.com/2006-Scape/Parabot.git
synced 2026-07-07 08:39:12 +00:00
Proper code style environment package
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user