MCPcopy Index your code
hub / github.com/Garten/sourcecraft / RunnableEmpty

Class RunnableEmpty

src/basic/RunnableEmpty.java:3–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package basic;
2
3public class RunnableEmpty implements Runnable {
4
5 public static final RunnableEmpty INSTANCE = new RunnableEmpty();
6
7 @Override
8 public void run() {
9 // do nothing
10 }
11
12 public static void doNothing() {
13 // do nothing;
14 }
15
16}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected