Skip to content

Commit

Permalink
Update MailEmpfaengerAuswahlDialog.java (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannMaierhofer authored Aug 14, 2024
1 parent 2f5fe6f commit 1aa4836
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ public void handleAction(Object context) throws ApplicationException
EigenschaftenAuswahlDialog ead = new EigenschaftenAuswahlDialog(null,
false, false, new MitgliedControl(null));
EigenschaftenAuswahlParameter param = ead.open();
if (param == null)
return;
for (EigenschaftenNode node : param.getEigenschaften())
{
DBIterator<Eigenschaften> it = Einstellungen.getDBService()
Expand All @@ -87,6 +89,10 @@ public void handleAction(Object context) throws ApplicationException
}
}
}
catch (OperationCanceledException oce)
{
return;
}
catch (Exception e)
{
throw new ApplicationException("Fehler" + e);
Expand Down

0 comments on commit 1aa4836

Please sign in to comment.