Skip to content

Commit

Permalink
Fix checkstyle error
Browse files Browse the repository at this point in the history
  • Loading branch information
ChongXern committed Apr 2, 2024
1 parent 19cc0fb commit 26131d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/command/BaseCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
import financialtransactions.TransactionManager;

public abstract class BaseCommand {
public boolean isExit;
protected Inflow inflow;
protected Outflow outflow;
protected Reminder reminder;
String[] commandParts;
public boolean isExit;
public BaseCommand(Boolean isExit, String[] commandParts){
this.isExit = isExit;
this.commandParts = commandParts;
Expand Down

0 comments on commit 26131d9

Please sign in to comment.