diff --git a/src/main/java/command/BaseCommand.java b/src/main/java/command/BaseCommand.java index 78e17b360f..38d6c55b6e 100644 --- a/src/main/java/command/BaseCommand.java +++ b/src/main/java/command/BaseCommand.java @@ -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;