1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-19 13:01:20 +02:00

Remove all instances of transient. (properly formatted this time!)

This commit is contained in:
Iaccidentally
2013-01-14 20:38:11 -05:00
parent 2a097530e5
commit fa3f4f92f4
99 changed files with 294 additions and 294 deletions

View File

@@ -11,8 +11,8 @@ import org.bukkit.plugin.Plugin;
public class EssentialsConnect
{
private static final Logger LOGGER = Logger.getLogger("Minecraft");
private final transient IEssentials ess;
private final transient IProtect protect;
private final IEssentials ess;
private final IProtect protect;
public EssentialsConnect(final Plugin essPlugin, final Plugin essProtect)
{

View File

@@ -11,8 +11,8 @@ import org.bukkit.plugin.java.JavaPlugin;
public class EssentialsProtect extends JavaPlugin implements IProtect
{
private static final Logger LOGGER = Logger.getLogger("Minecraft");
private transient EssentialsConnect ess = null;
private transient ProtectHolder settings = null;
private EssentialsConnect ess = null;
private ProtectHolder settings = null;
@Override
public void onEnable()

View File

@@ -13,7 +13,7 @@ import org.bukkit.event.block.BlockIgniteEvent;
public class EssentialsProtectBlockListener implements Listener
{
final private transient IProtect prot;
final private IProtect prot;
public EssentialsProtectBlockListener(final IProtect parent)
{

View File

@@ -11,7 +11,7 @@ import org.bukkit.event.entity.EntityTargetEvent.TargetReason;
//TODO: remove unnecessary return statements
public class EssentialsProtectEntityListener implements Listener
{
private final transient IProtect prot;
private final IProtect prot;
public EssentialsProtectEntityListener(final IProtect prot)
{

View File

@@ -10,7 +10,7 @@ import org.bukkit.event.weather.WeatherChangeEvent;
public class EssentialsProtectWeatherListener implements Listener
{
private final transient IProtect prot;
private final IProtect prot;
public EssentialsProtectWeatherListener(final IProtect prot)
{

View File

@@ -29,7 +29,7 @@ public enum Permissions implements IPermission
private static final String base = "essentials.protect.";
private final String permission;
private final PermissionDefault defaultPerm;
private transient String parent = null;
private String parent = null;
private Permissions()
{