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

@@ -11,9 +11,9 @@ public enum ChatMode
private ChatMode(final int value, final String nicename)
{
this.value = value;
this.nicename = nicename;
}
this.value = value;
this.nicename = nicename;
}
public boolean isAtLeast(ChatMode role)
{

View File

@@ -72,7 +72,7 @@ public enum Permission
Permission(final String node)
{
this.node = "factions."+node;
}
}
public boolean has(CommandSender sender, boolean informSenderIfNot)
{

View File

@@ -17,9 +17,9 @@ public enum Relation
private Relation(final int value, final String nicename)
{
this.value = value;
this.nicename = nicename;
}
this.value = value;
this.nicename = nicename;
}
@Override
public String toString()

View File

@@ -13,9 +13,9 @@ public enum Role
private Role(final int value, final String nicename)
{
this.value = value;
this.nicename = nicename;
}
this.value = value;
this.nicename = nicename;
}
public boolean isAtLeast(Role role)
{