You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In DirectDebit.java the static final variables IBAN and mandate have
to be initialized in the default constructor, otherwise build stops with
error (Variable 'IBAN'/.. might not have been initialized..)
/**
* bean constructor
*/
public DirectDebit() {
this.IBAN = ""; // added to fix not inititalized
this.mandate = ""; // added to fix not inititalized
}
The text was updated successfully, but these errors were encountered:
janrosendahl
pushed a commit
to janrosendahl/mustangproject
that referenced
this issue
Nov 21, 2024
In DirectDebit.java the static final variables IBAN and mandate have
to be initialized in the default constructor, otherwise build stops with
error (Variable 'IBAN'/.. might not have been initialized..)
The text was updated successfully, but these errors were encountered: