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

Method executeAll_Login

src/main/java/exitcode/API.java:201–209  ·  view source on GitHub ↗

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

()

Source from the content-addressed store, hash-verified

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

Callers 1

loadSystemMethod · 0.95

Calls 2

printlnMethod · 0.95
runMethod · 0.45

Tested by

no test coverage detected