Cleaning sweep, mainly for various stray "4 spaces" indentions to tabs

This commit is contained in:
Brettflan 2012-03-13 08:26:54 -05:00
parent 554a7a42c6
commit 03fe63cda0
17 changed files with 271 additions and 282 deletions

View File

@ -7,7 +7,8 @@ import com.massivecraft.factions.struct.Relation;
import com.massivecraft.factions.Faction;
public class FactionRelationEvent extends Event {
public class FactionRelationEvent extends Event
{
private static final HandlerList handlers = new HandlerList();
private Faction fsender;
@ -52,5 +53,4 @@ public class FactionRelationEvent extends Event {
{
return ftarget;
}
}

View File

@ -8,7 +8,8 @@ import org.bukkit.event.HandlerList;
import com.massivecraft.factions.FPlayer;
import com.massivecraft.factions.Faction;
public class FactionRenameEvent extends Event implements Cancellable {
public class FactionRenameEvent extends Event implements Cancellable
{
private static final HandlerList handlers = new HandlerList();
private boolean cancelled;

View File

@ -77,5 +77,4 @@ public class LandClaimEvent extends Event implements Cancellable
{
this.cancelled = c;
}
}

View File

@ -3,7 +3,6 @@ package com.massivecraft.factions.event;
import org.bukkit.event.Event;
import org.bukkit.event.HandlerList;
//import com.massivecraft.factions.FLocation;
import com.massivecraft.factions.Faction;
import com.massivecraft.factions.FPlayer;
import org.bukkit.entity.Player;
@ -12,9 +11,6 @@ public class LandUnclaimAllEvent extends Event
{
private static final HandlerList handlers = new HandlerList();
// Location is commented out because there is no clean way to hook currently.
// faction and fplayer should be enough to filter needed information.
// private FLocation[] location;
private Faction faction;
private FPlayer fplayer;
@ -34,13 +30,6 @@ public class LandUnclaimAllEvent extends Event
return handlers;
}
/*
public FLocation getLocation()
{
return this.location;
}
*/
public Faction getFaction()
{
return faction;