Fixed Indents on all files using the reformat option and optimized imports
This commit is contained in:
parent
bb7d32bb92
commit
c6512bf316
@ -4,7 +4,6 @@ import com.google.common.collect.ImmutableMap;
|
||||
import com.massivecraft.factions.integration.dynmap.DynmapStyle;
|
||||
import com.massivecraft.factions.util.MultiversionMaterials;
|
||||
import com.massivecraft.factions.zcore.fperms.DefaultPermissions;
|
||||
import com.massivecraft.factions.zcore.fperms.PermissableAction;
|
||||
import org.bukkit.ChatColor;
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.entity.EntityType;
|
||||
|
@ -203,6 +203,7 @@ public interface Faction extends EconomyParticipator {
|
||||
void setPermission(Permissable permissable, PermissableAction permissableAction, Access access);
|
||||
|
||||
void resetPerms();
|
||||
|
||||
void setDefaultPerms();
|
||||
|
||||
void disband(Player disbander);
|
||||
|
@ -1,7 +1,9 @@
|
||||
package com.massivecraft.factions.zcore.fperms;
|
||||
|
||||
public class DefaultPermissions {
|
||||
public DefaultPermissions() { }
|
||||
public DefaultPermissions() {
|
||||
}
|
||||
|
||||
public DefaultPermissions(boolean def) {
|
||||
this.ban = def;
|
||||
this.build = def;
|
||||
@ -31,6 +33,7 @@ public class DefaultPermissions {
|
||||
this.chest = def;
|
||||
this.spawner = def;
|
||||
}
|
||||
|
||||
public DefaultPermissions(boolean canBan,
|
||||
boolean canBuild,
|
||||
boolean canDestory,
|
||||
@ -86,6 +89,7 @@ public class DefaultPermissions {
|
||||
this.chest = canChest;
|
||||
this.spawner = canSpawners;
|
||||
}
|
||||
|
||||
public boolean ban;
|
||||
public boolean build;
|
||||
public boolean destroy;
|
||||
@ -113,6 +117,7 @@ public class DefaultPermissions {
|
||||
public boolean withdraw;
|
||||
public boolean chest;
|
||||
public boolean spawner;
|
||||
|
||||
@Deprecated
|
||||
public boolean getbyName(String name) {
|
||||
if (name == "ban") return this.ban;
|
||||
|
Loading…
Reference in New Issue
Block a user