Skip to content

Commit

Permalink
Replace * imports with single class imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ShyamKrishna33 committed Apr 10, 2024
1 parent f9c1ce4 commit c6267a5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
7 changes: 6 additions & 1 deletion src/main/java/budgetbuddy/parser/Parser.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
import budgetbuddy.account.Account;
import budgetbuddy.categories.Category;

import budgetbuddy.exceptions.*;
import budgetbuddy.exceptions.EmptyArgumentException;
import budgetbuddy.exceptions.InvalidAddTransactionSyntax;
import budgetbuddy.exceptions.InvalidArgumentSyntaxException;
import budgetbuddy.exceptions.InvalidCategoryException;
import budgetbuddy.exceptions.InvalidEditTransactionData;
import budgetbuddy.exceptions.InvalidTransactionTypeException;
import budgetbuddy.transaction.TransactionList;
import budgetbuddy.transaction.type.Expense;
import budgetbuddy.transaction.type.Income;
Expand Down
6 changes: 5 additions & 1 deletion src/test/java/budgetbuddy/parser/ParserTest.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
package budgetbuddy.parser;
import budgetbuddy.account.Account;
import budgetbuddy.exceptions.*;
import budgetbuddy.exceptions.EmptyArgumentException;
import budgetbuddy.exceptions.InvalidAddTransactionSyntax;
import budgetbuddy.exceptions.InvalidCategoryException;
import budgetbuddy.exceptions.InvalidEditTransactionData;
import budgetbuddy.exceptions.InvalidTransactionTypeException;
import org.junit.jupiter.api.Test;
import budgetbuddy.transaction.type.Transaction;

Expand Down

0 comments on commit c6267a5

Please sign in to comment.