1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-22 14:23:09 +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

@@ -9,7 +9,7 @@ import org.bukkit.plugin.Plugin;
public class ConfigHolder extends AsyncStorageObjectHolder<GeoIP>
{
private final transient Plugin geoip;
private final Plugin geoip;
public ConfigHolder(final IEssentials ess, final Plugin geoip)
{

View File

@@ -26,12 +26,12 @@ import org.bukkit.plugin.Plugin;
public class EssentialsGeoIPPlayerListener implements Listener, IReload
{
private transient LookupService ls = null;
private LookupService ls = null;
private static final Logger LOGGER = Logger.getLogger("Minecraft");
private transient File databaseFile;
private final transient ConfigHolder config;
private final transient IEssentials ess;
private final transient Plugin geoip;
private File databaseFile;
private final ConfigHolder config;
private final IEssentials ess;
private final Plugin geoip;
public EssentialsGeoIPPlayerListener(final Plugin geoip, final IEssentials ess)
{