Called by ImageJ when the user selects Quit.
()
| 790 | |
| 791 | /** Called by ImageJ when the user selects Quit. */ |
| 792 | public void quit() { |
| 793 | quitMacro = IJ.macroRunning(); |
| 794 | Thread thread = new Thread(this, "Quit"); |
| 795 | thread.setPriority(Thread.NORM_PRIORITY); |
| 796 | thread.start(); |
| 797 | IJ.wait(10); |
| 798 | } |
| 799 | |
| 800 | /** Returns true if ImageJ is exiting. */ |
| 801 | public boolean quitting() { |
no test coverage detected