()
| 42 | String finalBestP = bestP; |
| 43 | handler.postDelayed(new Runnable() { |
| 44 | @SuppressLint("MissingPermission") |
| 45 | @Override |
| 46 | public void run() { |
| 47 | locationManager.requestLocationUpdates(finalBestP, 1000, 1, locationListener); |
| 48 | if (continueListener) { |
| 49 | handler.postDelayed(this, 1000 * 20); |
| 50 | } |
| 51 | } |
| 52 | }, 1000 * 20); |
| 53 | locationManager.requestLocationUpdates(bestP, 1000, 100, locationListener); |
| 54 | } |
nothing calls this directly
no outgoing calls
no test coverage detected