| | import java.util.stream.Collectors; |
| | |
| | +import static com.keenwrite.Messages.get; |
| | import static com.keenwrite.constants.Constants.NEWLINE; |
| | import static com.keenwrite.constants.Constants.STATUS_BAR_OK; |
| | -import static com.keenwrite.Messages.get; |
| | import static java.util.Arrays.stream; |
| | |
 |
| | |
| | /** |
| | - * Resets the status bar to a default message. |
| | + * Resets the status bar to a default message. Indicates that there are no |
| | + * issues to bring to the user's attention. |
| | */ |
| | public static void clue() { |
| | - // Indicates that there are no issues to bring to the user's attention. |
| | - new StatusEvent( get( STATUS_BAR_OK, "OK" ) ); |
| | + fireStatusEvent( get( STATUS_BAR_OK, "OK" ) ); |
| | } |
| | |