Show a notice message in the editor status bar.
(String msg)
| 2447 | * Show a notice message in the editor status bar. |
| 2448 | */ |
| 2449 | public void statusNotice(String msg) { |
| 2450 | if (msg == null) { |
| 2451 | new IllegalArgumentException("This code called statusNotice(null)").printStackTrace(); |
| 2452 | msg = ""; |
| 2453 | } |
| 2454 | status.notice(msg); |
| 2455 | } |
| 2456 | |
| 2457 | |
| 2458 | public void clearNotice(String msg) { |
no test coverage detected