()
| 177 | } |
| 178 | |
| 179 | @Override |
| 180 | public void launch() throws Exception { |
| 181 | if (traits.contains("legacyLaunch") || traits.contains("alphaLaunch")) { |
| 182 | // legacy launch uses the applet wrapper |
| 183 | legacyLaunch(); |
| 184 | } else { |
| 185 | // normal launch just calls main() |
| 186 | launchWithMainClass(); |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | } |
nothing calls this directly
no test coverage detected