Guest User

Untitled

a guest
Feb 20th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. // ORIGINAL CODE
  2.  
  3. if(wifiManager.isWifiEnabled()){
  4. wifiManager.setWifiEnabled(false);
  5. }else{
  6. wifiManager.setWifiEnabled(true);
  7. }
  8.  
  9.  
  10. // WHAT THIS SHOULD BE
  11.  
  12. wifiManager.setWifiEnabled(!wifiManager.isWifiEnabled());
Add Comment
Please, Sign In to add comment