summaryrefslogtreecommitdiffstats
path: root/Essentials2Compat/src/com/earth2me/essentials/UserData.java
diff options
context:
space:
mode:
authorIaccidentally <coryhuckaby@gmail.com>2013-01-11 19:56:02 -0500
committerIaccidentally <coryhuckaby@gmail.com>2013-01-11 19:56:02 -0500
commit859ca6e9199b2fe3ce652d3cb56a76559c2b4aca (patch)
treef4e4c192c4593882c8d3a6cb89bd065fb81f7e79 /Essentials2Compat/src/com/earth2me/essentials/UserData.java
parent72ab21ac19593e726b791244de1d8a9dfae812e1 (diff)
downloadEssentials-859ca6e9199b2fe3ce652d3cb56a76559c2b4aca.tar
Essentials-859ca6e9199b2fe3ce652d3cb56a76559c2b4aca.tar.gz
Essentials-859ca6e9199b2fe3ce652d3cb56a76559c2b4aca.tar.lz
Essentials-859ca6e9199b2fe3ce652d3cb56a76559c2b4aca.tar.xz
Essentials-859ca6e9199b2fe3ce652d3cb56a76559c2b4aca.zip
Cleanup :: Standardize import organization :: lots of comments :: remove unused eco systems
Diffstat (limited to 'Essentials2Compat/src/com/earth2me/essentials/UserData.java')
-rw-r--r--Essentials2Compat/src/com/earth2me/essentials/UserData.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/Essentials2Compat/src/com/earth2me/essentials/UserData.java b/Essentials2Compat/src/com/earth2me/essentials/UserData.java
index 078535293..7052ffbca 100644
--- a/Essentials2Compat/src/com/earth2me/essentials/UserData.java
+++ b/Essentials2Compat/src/com/earth2me/essentials/UserData.java
@@ -2,12 +2,12 @@ package com.earth2me.essentials;
import java.io.File;
import java.util.*;
+import net.ess3.api.IEssentials;
+import net.ess3.storage.StoredLocation;
import org.bukkit.Location;
import org.bukkit.configuration.ConfigurationSection;
import org.bukkit.configuration.MemoryConfiguration;
import org.bukkit.inventory.ItemStack;
-import net.ess3.api.IEssentials;
-import net.ess3.storage.StoredLocation;
public class UserData
@@ -581,7 +581,7 @@ public class UserData
return lastLogin;
}
- private void _setLastLogin(long time)
+ private void _setLastLogin(long time) //unused method
{
lastLogin = time;
config.setProperty("timestamps.login", time);
@@ -619,7 +619,7 @@ public class UserData
return lastLoginAddress;
}
- private void _setLastLoginAddress(String address)
+ private void _setLastLoginAddress(String address) //unused method
{
lastLoginAddress = address;
config.setProperty("ipAddress", address);
@@ -651,7 +651,7 @@ public class UserData
return ret;
}
- private boolean newplayer;
+ private boolean newplayer; //unused variable
private String geolocation;
private String _getGeoLocation()