Add proxy UI for wifi

bug: 3039302
Change-Id: I6fee69992ea78459f06ef270af5bf857eff93c44
This commit is contained in:
Irfan Sheriff
2010-09-22 16:09:35 -07:00
parent 44ba0fa9d1
commit c5361927f4
5 changed files with 225 additions and 16 deletions

View File

@@ -197,7 +197,7 @@ public class ProxySelector extends Fragment implements DialogCreatable {
* validate syntax of hostname and port entries
* @return 0 on success, string resource ID on failure
*/
int validate(String hostname, String port, String exclList) {
public static int validate(String hostname, String port, String exclList) {
Matcher match = HOSTNAME_PATTERN.matcher(hostname);
Matcher listMatch = EXCLLIST_PATTERN.matcher(exclList);