MCPcopy Create free account
hub / github.com/TheCyaniteProject/exit_code_java / executeAll_Desktop2

Method executeAll_Desktop2

src/main/java/exitcode/API.java:233–241  ·  view source on GitHub ↗

This executes all of the Runnable's stored within API.desktop_tasks2 NOT TO BE REFERENCED BY MODS

()

Source from the content-addressed store, hash-verified

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

Callers 1

startMethod · 0.95

Calls 2

printlnMethod · 0.95
runMethod · 0.45

Tested by

no test coverage detected