Fix reference to ProxyInfo extra

Also remove unneeded null check.

Change-Id: Ic25d1087f93632a24755b284ede41d870492e25d
This commit is contained in:
Jason Monk
2014-05-15 12:07:29 -04:00
parent 44a242a81d
commit b1bc7c1874

View File

@@ -155,9 +155,6 @@ public class ProxyInfo implements Parcelable {
mHost = source.getHost();
mPort = source.getPort();
mPacFileUrl = source.mPacFileUrl;
if (mPacFileUrl == null) {
mPacFileUrl = Uri.EMPTY;
}
mExclusionList = source.getExclusionListAsString();
mParsedExclusionList = source.mParsedExclusionList;
} else {