Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JJtan2002 committed Nov 7, 2024
1 parent a143f64 commit ce6d68b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public Command parseCommand(String userInput) throws ParseException {
return new FindTimeCommandParser().parse(arguments);

case FindGameCommand.COMMAND_WORD:
return new FindGameCommandParser().parse(arguments);
return new FindGameCommandParser().parse(arguments);

case ListCommand.COMMAND_WORD:
return new ListCommand();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package seedu.address.model.person;

import seedu.address.commons.util.StringUtil;
import seedu.address.commons.util.ToStringBuilder;

import java.util.List;
import java.util.function.Predicate;

import seedu.address.commons.util.StringUtil;
import seedu.address.commons.util.ToStringBuilder;

/**
* Tests that a {@code Person}'s {@code Games} matches any of the keywords given.
*/
Expand Down

0 comments on commit ce6d68b

Please sign in to comment.