()
| 124 | final Runner runtime = new Runner(build, listener); |
| 125 | new Thread(new Runnable() { |
| 126 | public void run() { |
| 127 | // these block until finished |
| 128 | if (present) { |
| 129 | runtime.present(null); |
| 130 | } else { |
| 131 | runtime.launch(null); |
| 132 | } |
| 133 | } |
| 134 | }).start(); |
| 135 | return runtime; |
| 136 | } |
nothing calls this directly
no test coverage detected