1
0

Removing Bauserverid

Dieser Commit ist enthalten in:
Travis CI 2019-06-22 23:08:02 +02:00
Ursprung d91df764dc
Commit 0d13d3cbb3

Datei anzeigen

@ -4,18 +4,13 @@ import java.util.UUID;
public class Bauserver extends Subserver { public class Bauserver extends Subserver {
private final int id;
private final UUID owner; private final UUID owner;
public Bauserver(String serverName, int id, UUID owner, int port, String... command) { public Bauserver(String serverName, UUID owner, int port, String... command) {
super(Servertype.BAUSERVER, serverName, port, command); super(Servertype.BAUSERVER, serverName, port, command);
this.id = id;
this.owner = owner; this.owner = owner;
} }
public int getId(){
return id;
}
public UUID getOwner(){ public UUID getOwner(){
return owner; return owner;
} }