Skip to content

Commit

Permalink
Remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
J-Y-Yan committed Nov 14, 2023
1 parent f9944ac commit d466eb1
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/main/java/seedu/duke/data/GoalList.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import seedu.duke.data.exception.IllegalValueException;
import seedu.duke.data.exception.IncorrectFormatException;
import seedu.duke.storagefile.GoalStorage;
import seedu.duke.storagefile.StorageFile;
import seedu.duke.ui.TextUi;

import java.io.IOException;
Expand All @@ -21,11 +20,6 @@ public GoalList() {
this.goalCount = 0;
}

public GoalList(ArrayList<Goal> goals) {
this.goals = goals;
this.goalCount = goals.size();
}

public Goal getGoal(int index) {
return this.goals.get(index);
}
Expand Down

0 comments on commit d466eb1

Please sign in to comment.