Minor fixes due to CR.

This commit is contained in:
Peter Serwylo 2016-02-07 10:39:01 +11:00
parent 10ccd5c503
commit d939e9dac9
2 changed files with 1 additions and 2 deletions

View File

@ -490,7 +490,7 @@ public class SwapService extends Service {
private SwapType bluetoothSwap;
private WifiSwap wifiSwap;
private static final int TIMEOUT = 900000; // 15 mins
private static final int TIMEOUT = 15 * 60 * 1000; // 15 mins
/**
* Used to automatically turn of swapping after a defined amount of time (15 mins).

View File

@ -762,7 +762,6 @@ public class SwapWorkflowActivity extends AppCompatActivity {
bluetooth = "\"" + adapter.getName() + "\" - " + scanModes.get(adapter.getScanMode());
}
// wifi = service.getBonjourFinder().isScanning() ? "Y" : " N";
message += "Find { BT: " + bluetooth + ", WiFi: " + wifi + "}";
}