(@NonNull Runnable r, long ms)
| 24 | } |
| 25 | |
| 26 | @SuppressLint("LambdaLast") |
| 27 | public static void postDelayed(@NonNull Runnable r, long ms) { |
| 28 | if (sHandler == null) { |
| 29 | sHandler = new Handler(Looper.getMainLooper()); |
| 30 | } |
| 31 | sHandler.postDelayed(r, ms); |
| 32 | } |
| 33 | |
| 34 | public static void postDelayed(long ms, @NonNull Runnable r) { |
| 35 | postDelayed(r, ms); |
no outgoing calls
no test coverage detected