use of io.bitsquare.alert.AlertManager in project bitsquare by bitsquare.
the class BitsquareApp method showSendAlertMessagePopup.
private void showSendAlertMessagePopup() {
AlertManager alertManager = injector.getInstance(AlertManager.class);
new SendAlertMessageWindow().onAddAlertMessage(alertManager::addAlertMessageIfKeyIsValid).onRemoveAlertMessage(alertManager::removeAlertMessageIfKeyIsValid).show();
}
Aggregations