Format the code.
This commit is contained in:
parent
c16a50cdf4
commit
08b2becce0
1 changed files with 25 additions and 18 deletions
|
@ -45,12 +45,17 @@ import org.thoughtcrime.ssl.pinning.SystemKeyStore;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.net.URISyntaxException;
|
import java.net.URISyntaxException;
|
||||||
|
import java.security.NoSuchAlgorithmException;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.StringTokenizer;
|
||||||
|
|
||||||
import com.koushikdutta.async.future.FutureCallback;
|
import com.koushikdutta.async.future.FutureCallback;
|
||||||
import com.koushikdutta.ion.Ion;
|
import com.koushikdutta.ion.Ion;
|
||||||
|
import com.koushikdutta.ion.future.ResponseFuture;
|
||||||
|
|
||||||
|
import javax.net.ssl.SSLContext;
|
||||||
import javax.net.ssl.TrustManager;
|
import javax.net.ssl.TrustManager;
|
||||||
|
import javax.net.ssl.X509TrustManager;
|
||||||
|
|
||||||
|
|
||||||
public class MainActivity extends ActionBarActivity {
|
public class MainActivity extends ActionBarActivity {
|
||||||
|
@ -133,9 +138,11 @@ public class MainActivity extends ActionBarActivity {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void beforeTextChanged(CharSequence s, int start, int count, int after) {}
|
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
|
||||||
|
}
|
||||||
|
|
||||||
public void onTextChanged(CharSequence s, int start, int before, int count) {}
|
public void onTextChanged(CharSequence s, int start, int before, int count) {
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
Switch s = (Switch) rootView.findViewById(R.id.switchWLAN);
|
Switch s = (Switch) rootView.findViewById(R.id.switchWLAN);
|
||||||
|
|
Reference in a new issue