Don't clear Global Proxy on boot.

Doesn't clear the global proxy when a deprecated one is not found because
there still may be a non-deprecated global proxy present.

Bug: 10457179
Change-Id: I68e6d5aee7b4940f9315484060c7d82cb8ccfa70
This commit is contained in:
Jason Monk
2013-08-27 10:51:24 -04:00
parent 5b8b6751f3
commit 01a790ad55

View File

@@ -3355,8 +3355,6 @@ public class ConnectivityService extends IConnectivityManager.Stub {
} }
ProxyProperties p = new ProxyProperties(data[0], proxyPort, ""); ProxyProperties p = new ProxyProperties(data[0], proxyPort, "");
setGlobalProxy(p); setGlobalProxy(p);
} else {
setGlobalProxy(null);
} }
} }