Skip to content

Commit c946252

Browse files
committed
fix: ran gradlew command to fix violation
1 parent b4b886b commit c946252

File tree

1 file changed

+3
-5
lines changed
  • lesson_17/bank/bank_app/src/main/java/com/codedifferently/lesson17/bank

1 file changed

+3
-5
lines changed

lesson_17/bank/bank_app/src/main/java/com/codedifferently/lesson17/bank/BankAtm.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
package com.codedifferently.lesson17.bank;
22

3+
import com.codedifferently.lesson17.bank.exceptions.AccountNotFoundException;
34
import java.util.HashMap;
45
import java.util.Map;
56
import java.util.Set;
67
import java.util.UUID;
78

8-
import com.codedifferently.lesson17.bank.exceptions.AccountNotFoundException;
9-
109
/** Represents a bank ATM. */
1110
public class BankAtm {
1211

@@ -70,9 +69,8 @@ public void depositFunds(String accountNumber, Check check) {
7069
*
7170
* @param accountNumber The unique identifier of the account.
7271
* @param amount The amount to withdraw from the account.
73-
*
74-
* @throws IllegalArgumentException if the account is not found or if the withdrawal
75-
* would result in a balance below $10,000 for a BusinessCheckingAccount.
72+
* @throws IllegalArgumentException if the account is not found or if the withdrawal would result
73+
* in a balance below $10,000 for a BusinessCheckingAccount.
7674
*/
7775
public void withdrawFunds(String accountNumber, double amount) {
7876
CheckingAccount account = getAccountOrThrow(accountNumber);

0 commit comments

Comments
 (0)