just report that there was an issue checking when the http connection

fails instead of reporting the full stack trace.
This commit is contained in:
Nick Minkler 2014-02-01 20:54:28 -08:00
parent 9065713a6a
commit b7c7ca4cce

View File

@ -20,7 +20,6 @@ import java.io.IOException;
import java.io.InputStreamReader; import java.io.InputStreamReader;
import java.lang.reflect.InvocationTargetException; import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method; import java.lang.reflect.Method;
import java.net.MalformedURLException;
import java.net.URL; import java.net.URL;
import java.net.URLConnection; import java.net.URLConnection;
import java.util.Collection; import java.util.Collection;
@ -587,10 +586,8 @@ public class Vault extends JavaPlugin {
// Pull the last version from the JSON // Pull the last version from the JSON
newVersionTitle = ((String) ((JSONObject) array.get(array.size() - 1)).get("name")).replace("Vault", "").trim(); newVersionTitle = ((String) ((JSONObject) array.get(array.size() - 1)).get("name")).replace("Vault", "").trim();
return Double.valueOf(newVersionTitle.replaceFirst("\\.", "").trim()); return Double.valueOf(newVersionTitle.replaceFirst("\\.", "").trim());
} catch (MalformedURLException e) { } catch (Exception e) {
e.printStackTrace(); log.info("There was an issue attempting to check for the latest version.");
} catch (IOException e) {
e.printStackTrace();
} }
return currentVersion; return currentVersion;
} }