Removing some deprecated stuff and fixing some ASCII art.

This commit is contained in:
Olof Larsson
2013-04-10 09:40:39 +02:00
parent 27cee7d6f7
commit 57f5372d43
3 changed files with 21 additions and 67 deletions

View File

@ -18,7 +18,7 @@ public class TerritoryAccess
private boolean hostFactionAllowed = true;
public boolean isHostFactionAllowed() { return this.hostFactionAllowed; }
public void setHostFactionAllowed(boolean allowed) { this.hostFactionAllowed = allowed; }
public void setHostFactionAllowed(boolean hostFactionAllowed) { this.hostFactionAllowed = hostFactionAllowed; }
private Set<String> factionIds = new LinkedHashSet<String>();
public Set<String> getFactionIds() { return this.factionIds; }
@ -30,11 +30,9 @@ public class TerritoryAccess
// CONSTRUCT
// -------------------------------------------- //
public TerritoryAccess(String factionID)
public TerritoryAccess(String hostFactionId)
{
hostFactionId = factionID;
this.hostFactionId = hostFactionId;
}
public TerritoryAccess()