chiark / gitweb /
installer no longer phones home (!)
authorIan Jackson <ian@liberator.relativity.greenend.org.uk>
Sun, 22 Aug 2010 22:00:32 +0000 (23:00 +0100)
committerIan Jackson <ian@liberator.relativity.greenend.org.uk>
Sun, 22 Aug 2010 22:00:32 +0000 (23:00 +0100)
src/com/tedpearson/ypp/market/Installer.java

index a7621b823b4befa927313e5d48cfcf5de178c390..2662fe9659d1e9c9c2b4256e5c2239494b6fd75f 100644 (file)
@@ -18,7 +18,6 @@ import java.net.URLDecoder;
 *      An Installer for PCTB Java Client.
 */
 public class Installer extends JFrame {
-       public final static int VERSION = 8; 
        private JLabel label;
        private JProgressBar progress;
        private JButton install, uninstall;
@@ -137,10 +136,6 @@ public class Installer extends JFrame {
        public Installer(String[] args) {
                super("PCTB Installer");
                
-               Updater.getUpdater().checkAndUpdate(null, "http://tedpearson.com/market/version",
-                       "the PCTB Uploader client", VERSION, true,
-                       getClass().getProtectionDomain().getCodeSource().getLocation().getPath());
-               
                // gui: simple window with status area and progress bar
                checkPermission(args);
                label = new JLabel("Ready to install!");
@@ -342,4 +337,4 @@ public class Installer extends JFrame {
                        uninstalled = false;
                }
        }
-}
\ No newline at end of file
+}