We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 133525f commit 98052f7Copy full SHA for 98052f7
lesson_17/bank/bank_app/src/main/java/com/codedifferently/lesson17/bank/BankAccount.java
@@ -18,6 +18,7 @@ public class BankAccount {
18
* @param owners The owners of the account.
19
* @param initialBalance The initial balance of the account.
20
*/
21
+ // Constructor
22
public BankAccount(String accountNumber, Set<Customer> owners, double initialBalance) {
23
this.accountNumber = accountNumber;
24
this.owners = owners;
0 commit comments