()
| 354 | public void goThreaded() { |
| 355 | if (shareContextAtConstruction != null) |
| 356 | throw new IllegalArgumentException( |
| 357 | " can't multithread a window if it's sharing a context on construciton. Set Window.shareContext to null before creating window"); |
| 358 | RunLoop.main.getLoop() |
| 359 | .detach(perform); |
| 360 | isThreaded = true; |
| 361 | |
| 362 | |
| 363 | new Thread() { |