MCPcopy Create free account
hub / github.com/careercup/ctci / run

Method run

java/Chapter 16/Question16_5/MyThread.java:12–20  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

10 }
11
12 public void run() {
13 if (method == "first") {
14 foo.first();
15 } else if (method == "second") {
16 foo.second();
17 } else if (method == "third") {
18 foo.third();
19 }
20 }
21}

Callers

nothing calls this directly

Calls 3

firstMethod · 0.45
secondMethod · 0.45
thirdMethod · 0.45

Tested by

no test coverage detected