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

Method executeAll_Desktop

src/main/java/exitcode/API.java:217–225  ·  view source on GitHub ↗

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

()

Source from the content-addressed store, hash-verified

215 */
216
217 static void executeAll_Desktop() {
218 if (API.desktop_tasks.entrySet().size() >= 1) {
219 API.println("Executing Desktop Tasks..");
220 for (Map.Entry<String, Runnable> entry : API.desktop_tasks.entrySet()) {
221 API.println(String.format("Executing %s..", entry.getKey()));
222 entry.getValue().run();
223 }
224 }
225 }
226
227 /**
228 * This executes all of the Runnable's stored within API.desktop_tasks2

Callers 1

startMethod · 0.95

Calls 2

printlnMethod · 0.95
runMethod · 0.45

Tested by

no test coverage detected