This executes all of the Runnable's stored within API.login_tasks NOT TO BE REFERENCED BY MODS
()
| 199 | */ |
| 200 | |
| 201 | static void executeAll_Login() { |
| 202 | if (API.login_tasks.entrySet().size() >= 1) { |
| 203 | API.println("Executing LoginPage Tasks.."); |
| 204 | for (Map.Entry<String, Runnable> entry : API.login_tasks.entrySet()) { |
| 205 | API.println(String.format("Executing %s..", entry.getKey())); |
| 206 | entry.getValue().run(); |
| 207 | } |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | /** |
| 212 | * This executes all of the Runnable's stored within API.desktop_tasks |
no test coverage detected