Move lang updating to updateLang() in the main class

This commit is contained in:
gomeow
2013-05-27 23:59:28 -07:00
parent 559d0f7f66
commit 91979b5526
2 changed files with 12 additions and 18 deletions
@@ -7,9 +7,7 @@ import java.net.URL;
import java.net.UnknownHostException;
import java.util.SortedMap;
import java.util.TreeMap;
import java.util.logging.Level;
import org.bukkit.configuration.file.YamlConfiguration;
import org.json.JSONException;
import org.json.JSONObject;
@@ -22,22 +20,6 @@ public class Updater extends PlayerVaults {
SortedMap<String, String> lang = new TreeMap<String, String>();
public Updater() {
YamlConfiguration langConf = super.getLang();
for(Lang item:Lang.values()) {
if (langConf.getString(item.getPath()) == null) {
langConf.set(item.getPath(), item.getDefault());
}
}
try {
langConf.save(super.getLangFile());
} catch(IOException e) {
log.log(Level.WARNING, "PlayerVaults: Failed to save lang.yml.");
log.log(Level.WARNING, "PlayerVaults: Report this stack trace to drtshock and gomeow.");
e.printStackTrace();
}
}
/**
* Check whether or not there is a new update.
* @param currentVersion The current running version.