Delays 'msecs' milliseconds.
(int msecs)
| 985 | |
| 986 | /**Delays 'msecs' milliseconds.*/ |
| 987 | public static void wait(int msecs) { |
| 988 | try {Thread.sleep(msecs);} |
| 989 | catch (InterruptedException e) { } |
| 990 | } |
| 991 | |
| 992 | /** Emits an audio beep. */ |
| 993 | @AstroImageJ(reason = "Add option to disable beep", modified = true) |
no test coverage detected