This executes all of the Runnable's stored within API.desktop_tasks2 NOT TO BE REFERENCED BY MODS
()
| 231 | */ |
| 232 | |
| 233 | static void executeAll_Desktop2() { |
| 234 | if (API.desktop_tasks2.entrySet().size() >= 1) { |
| 235 | API.println("Executing Secondary Desktop Tasks.."); |
| 236 | for (Map.Entry<String, Runnable> entry : API.desktop_tasks2.entrySet()) { |
| 237 | API.println(String.format("Executing %s..", entry.getKey())); |
| 238 | entry.getValue().run(); |
| 239 | } |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | /** |
| 244 | * This executes all of the Runnable's stored within API.shutdown_tasks |