mirror of
https://github.com/essentials/Essentials.git
synced 2025-08-13 18:14:38 +02:00
Revert "Remove Transient :: Formatting Cleanup"
This commit is contained in:
@@ -9,8 +9,8 @@ import org.bukkit.plugin.Plugin;
|
||||
|
||||
public class ConfigHolder extends AsyncStorageObjectHolder<GeoIP>
|
||||
{
|
||||
private final Plugin geoip;
|
||||
|
||||
private final transient Plugin geoip;
|
||||
|
||||
public ConfigHolder(final IEssentials ess, final Plugin geoip)
|
||||
{
|
||||
super(ess, GeoIP.class, new File(geoip.getDataFolder(), "config.yml"));
|
||||
|
@@ -26,12 +26,12 @@ import org.bukkit.plugin.Plugin;
|
||||
|
||||
public class EssentialsGeoIPPlayerListener implements Listener, IReload
|
||||
{
|
||||
private LookupService ls = null;
|
||||
private transient LookupService ls = null;
|
||||
private static final Logger LOGGER = Logger.getLogger("Minecraft");
|
||||
private File databaseFile;
|
||||
private final ConfigHolder config;
|
||||
private final IEssentials ess;
|
||||
private final Plugin geoip;
|
||||
private transient File databaseFile;
|
||||
private final transient ConfigHolder config;
|
||||
private final transient IEssentials ess;
|
||||
private final transient Plugin geoip;
|
||||
|
||||
public EssentialsGeoIPPlayerListener(final Plugin geoip, final IEssentials ess)
|
||||
{
|
||||
|
Reference in New Issue
Block a user