From 2fdebb47c5b5ec85acaa78fb7101c96da1a8668e Mon Sep 17 00:00:00 2001 From: gomeow Date: Tue, 5 Mar 2013 21:49:21 -0800 Subject: [PATCH] Remove misleading comments --- src/me/shock/playervaults/util/Updater.java | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/src/me/shock/playervaults/util/Updater.java b/src/me/shock/playervaults/util/Updater.java index d489837..004923f 100644 --- a/src/me/shock/playervaults/util/Updater.java +++ b/src/me/shock/playervaults/util/Updater.java @@ -1,11 +1,5 @@ package me.shock.playervaults.util; -/* - * Updater for Bukkit. - * - * This class provides the means to safetly and easily update a plugin, or check to see if it is updated using dev.bukkit.org - */ - import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.URL; @@ -13,21 +7,6 @@ import java.net.UnknownHostException; import me.shock.playervaults.Main; -/** - * Check dev.bukkit.org to find updates for a given plugin, and download the updates if needed. - *

- * VERY, VERY IMPORTANT: Because there are no standards for adding auto-update toggles in your plugin's config, this system provides NO CHECK WITH YOUR CONFIG to make sure the user has allowed auto-updating. - *
- * It is a BUKKIT POLICY that you include a boolean value in your config that prevents the auto-updater from running AT ALL. - *
- * If you fail to include this option in your config, your plugin will be REJECTED when you attempt to submit it to dev.bukkit.org. - *

- * An example of a good configuration option would be something similar to 'auto-update: true' - if this value is set to false you may NOT run the auto-updater. - *
- * If you are unsure about these rules, please read the plugin submission guidelines: http://goo.gl/8iU5l - * - * @author H31IX - */ public class Updater extends Main {