зеркало из https://github.com/mozilla/gecko-dev.git
Bug 971873 - ProxySelector references String.isEmpty(), which is API level 9 r=bnicholson
This commit is contained in:
Родитель
7a77af756e
Коммит
14486ef641
|
@ -18,6 +18,8 @@
|
|||
|
||||
package org.mozilla.gecko.util;
|
||||
|
||||
import android.text.TextUtils;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.InetSocketAddress;
|
||||
import java.net.Proxy;
|
||||
|
@ -79,7 +81,7 @@ public class ProxySelector {
|
|||
*/
|
||||
private Proxy lookupProxy(String hostKey, String portKey, Proxy.Type type, int defaultPort) {
|
||||
String host = System.getProperty(hostKey);
|
||||
if (host == null || host.isEmpty()) {
|
||||
if (TextUtils.isEmpty(host)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче