1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-20 13:31:25 +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

@@ -7,9 +7,9 @@ import net.ess3.economy.Trade;
public class ChatStore
{
private final transient IUser user;
private final transient String type;
private final transient Trade charge;
private final IUser user;
private final String type;
private final Trade charge;
public ChatStore(final IEssentials ess, final IUser user, final String type)
{

View File

@@ -17,10 +17,10 @@ import org.bukkit.event.player.AsyncPlayerChatEvent;
public abstract class EssentialsChatPlayer implements Listener
{
protected transient IEssentials ess;
protected IEssentials ess;
protected final static Logger LOGGER = Logger.getLogger("Minecraft");
protected final transient Server server;
protected final transient Map<AsyncPlayerChatEvent, ChatStore> chatStorage;
protected final Server server;
protected final Map<AsyncPlayerChatEvent, ChatStore> chatStorage;
public EssentialsChatPlayer(
final Server server, final IEssentials ess, final Map<AsyncPlayerChatEvent, ChatStore> chatStorage)

View File

@@ -14,8 +14,8 @@ import org.bukkit.event.Listener;
public class EssentialsLocalChatEventListener implements Listener
{
protected transient IEssentials ess;
protected final transient Server server;
protected IEssentials ess;
protected final Server server;
public EssentialsLocalChatEventListener(final Server server, final IEssentials ess)
{