Hopefully the remaining tabs are now spaces... eclipse is being odd.

This commit is contained in:
nossr50 2012-02-09 03:42:08 -08:00
parent e99b5a4abf
commit 0b4692e303

View File

@ -22,7 +22,7 @@ import com.gmail.nossr50.Users;
import com.gmail.nossr50.mcMMO;
public class mcSaveTimer implements Runnable {
private final mcMMO plugin;
private final mcMMO plugin;
public mcSaveTimer(final mcMMO plugin)
{
@ -31,10 +31,10 @@ public class mcSaveTimer implements Runnable {
public void run()
{
//All player data will be saved periodically through this
for(Player player : plugin.getServer().getOnlinePlayers())
{
Users.getProfile(player).save();
}
//All player data will be saved periodically through this
for(Player player : plugin.getServer().getOnlinePlayers())
{
Users.getProfile(player).save();
}
}
}