Move Updater to independent package due to custom changes being overwritten by other plugins using the updater.

This commit is contained in:
GJ 2013-09-26 09:37:31 -04:00
parent a63f745c73
commit 8cb8dea642
2 changed files with 4 additions and 4 deletions

View File

@ -49,9 +49,9 @@ import com.gmail.nossr50.util.commands.CommandRegistrationManager;
import com.gmail.nossr50.util.experience.FormulaManager;
import com.gmail.nossr50.util.player.UserManager;
import net.h31ix.updater.Updater;
import net.h31ix.updater.Updater.UpdateResult;
import net.h31ix.updater.Updater.UpdateType;
import net.h31ix.updater.mcmmo.Updater;
import net.h31ix.updater.mcmmo.Updater.UpdateResult;
import net.h31ix.updater.mcmmo.Updater.UpdateType;
import net.shatteredlands.shatt.backup.ZipLibrary;
public class mcMMO extends JavaPlugin {

View File

@ -4,7 +4,7 @@
* This class provides the means to safely and easily update a plugin, or check to see if it is updated using dev.bukkit.org
*/
package net.h31ix.updater;
package net.h31ix.updater.mcmmo;
import javax.xml.stream.XMLEventReader;
import javax.xml.stream.XMLInputFactory;