Removed "general.check-updates" from config. Unused.

This commit is contained in:
Florian CUNY 2018-08-30 23:33:52 +02:00
parent 1e791f8497
commit 3c00247eda

View File

@ -33,12 +33,6 @@ public class Settings implements DataObject {
@ConfigEntry(path = "general.metrics")
private boolean metrics = true;
@ConfigComment("Check for updates - this will tell Ops and the console if there is a new")
@ConfigComment("version available. It contacts dev.bukkit.org to request the latest version")
@ConfigComment("info. It does not download the latest version or change any files")
@ConfigEntry(path = "general.check-updates")
private boolean checkUpdates = true;
@ConfigComment("Default language for new players.")
@ConfigComment("This is the filename in the locale folder without .yml.")
@ConfigComment("If this does not exist, the default en-US will be used.")
@ -176,13 +170,6 @@ public class Settings implements DataObject {
return metrics;
}
/**
* @return the checkUpdates
*/
public boolean isCheckUpdates() {
return checkUpdates;
}
/**
* @return the defaultLanguage
*/
@ -310,13 +297,6 @@ public class Settings implements DataObject {
this.metrics = metrics;
}
/**
* @param checkUpdates the checkUpdates to set
*/
public void setCheckUpdates(boolean checkUpdates) {
this.checkUpdates = checkUpdates;
}
/**
* @param defaultLanguage the defaultLanguage to set
*/