fix indent

This commit is contained in:
ÆtherSurfer 2013-07-20 19:34:18 -04:00
parent bbc77790da
commit 3c13235365

View File

@ -25,7 +25,7 @@ public class FactionsEventChunkChange extends FactionsEventAbstractSender
private final PS chunk; private final PS chunk;
public PS getChunk() { return this.chunk; } public PS getChunk() { return this.chunk; }
private final Faction currentFaction; private final Faction currentFaction;
private final Faction newFaction; private final Faction newFaction;
public Faction getNewFaction() { return this.newFaction; } public Faction getNewFaction() { return this.newFaction; }
@ -37,7 +37,7 @@ public class FactionsEventChunkChange extends FactionsEventAbstractSender
{ {
super(sender); super(sender);
this.chunk = chunk.getChunk(true); this.chunk = chunk.getChunk(true);
this.currentFaction = BoardColls.get().getFactionAt(chunk); this.currentFaction = BoardColls.get().getFactionAt(chunk);
this.newFaction = newFaction; this.newFaction = newFaction;
} }