changeset 5023:db072eec897e

fix variable redefinition in URLConnectionDownload
author Gilles Duboscq <duboscq@ssw.jku.at>
date Mon, 05 Mar 2012 13:40:39 +0100
parents cbedef8b4d15
children 7ccdae96e98a
files mxtool/URLConnectionDownload.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mxtool/URLConnectionDownload.java	Sun Mar 04 18:56:25 2012 -0800
+++ b/mxtool/URLConnectionDownload.java	Mon Mar 05 13:40:39 2012 +0100
@@ -54,7 +54,7 @@
 
         String proxy = System.getenv("HTTP_PROXY");
         if (proxy == null) {
-            String proxy = System.getenv("http_proxy");
+            proxy = System.getenv("http_proxy");
         }
 
         String proxyMsg = "";