From 5c8da8336c1196bda3fd5d21208a17058dab1371 Mon Sep 17 00:00:00 2001 From: adam Date: Sat, 31 Jan 2004 10:58:10 +0000 Subject: [PATCH] fixed proxy exclusion-list bug darcs-hash:20040131105810-5007d-3411f5377d794a60b8d369ab4c622fad727911ae.gz --- src/org/xwt/HTTP.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/xwt/HTTP.java b/src/org/xwt/HTTP.java index 427fc70..681b928 100644 --- a/src/org/xwt/HTTP.java +++ b/src/org/xwt/HTTP.java @@ -657,7 +657,7 @@ public class HTTP { public int httpsProxyPort = -1; public String socksProxyHost = null; ///< the SOCKS Proxy Host to use public int socksProxyPort = -1; ///< the SOCKS Proxy Port to use - public String[] excluded = null; ///< hosts to be excluded from proxy use; wildcards permitted + public String[] excluded = new String[] { }; ///< hosts to be excluded from proxy use; wildcards permitted public JS proxyAutoConfigFunction = null; ///< the PAC script public static Proxy detectProxyViaManual() { -- 1.7.10.4