-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix für NullPointerException in MitgliederStammdaten #21
Conversation
@@ -42,6 +42,10 @@ public class SpendenbescheinigungAction implements Action | |||
@Override | |||
public void handleAction(Object context) throws ApplicationException | |||
{ | |||
if (context == null || !(context instanceof MitgliedskontoNode)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dein Editor verwendet hier tabs anstatt spaces kannst du das noch abändern?
sollte zumindest innerhalb von einem file gleich bleiben.
@@ -35,6 +35,11 @@ public class MitgliedskontoIstLoesenAction implements Action | |||
@Override | |||
public void handleAction(Object context) throws ApplicationException | |||
{ | |||
if (context == null || !(context instanceof MitgliedskontoNode)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
selbe topic mit spaces/tabs
@@ -36,6 +36,11 @@ public class MitgliedskontoDetailSollLoeschenAction implements Action | |||
@Override | |||
public void handleAction(Object context) throws ApplicationException | |||
{ | |||
if (context == null || !(context instanceof MitgliedskontoNode)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
selbe topic mit spaces/tabs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change the tabs to spaces.
Rest is fine :)
Dieser Pull Request behebt die Nullpointerexception in den Stammdaten -> Mitgliedskonto, wenn das Mitgliedskonto nicht ausgewählt wurde. Es erscheinen nun passende Fehlermeldungen.
#20