Skip to content

Commit

Permalink
Merge pull request nus-cs2103-AY2122S1#91 from jovyntls/fix-checkstyle
Browse files Browse the repository at this point in the history
Fix checkstyle
  • Loading branch information
jovyntls authored Oct 20, 2021
2 parents 1ba02b9 + 035b509 commit 37693cf
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/main/java/seedu/address/logic/commands/ListCommand.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package seedu.address.logic.commands;

import static java.util.Objects.requireNonNull;
import static seedu.address.model.Model.*;
import static seedu.address.model.Model.PREDICATE_SHOW_ALL_CCAS;
import static seedu.address.model.Model.PREDICATE_SHOW_ALL_PERSONS;
import static seedu.address.model.Model.PREDICATE_SHOW_ALL_REMINDERS;

import seedu.address.model.Model;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import static seedu.address.commons.core.Messages.MESSAGE_INVALID_COMMAND_FORMAT;
import static seedu.address.commons.core.Messages.MESSAGE_UNKNOWN_COMMAND;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

Expand Down Expand Up @@ -112,7 +113,7 @@ public Command parseCommand(String userInput) throws ParseException {

case ReminderDeleteCommand.COMMAND_WORD:
return new ReminderDeleteCommandParser().parse(arguments);

case ReminderFindCommand.COMMAND_WORD:
return new ReminderFindCommandParser().parse(arguments);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package seedu.address.logic.parser.reminder;

import static seedu.address.commons.core.Messages.MESSAGE_INVALID_COMMAND_FORMAT;

import java.util.Arrays;

import seedu.address.logic.commands.reminder.ReminderFindCommand;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,11 @@ public ObservableList<Reminder> getFilteredReminderList() {
throw new AssertionError("This method should not be called.");
}

@Override
public void updateFilteredReminderList(Predicate<Reminder> predicate) {
throw new AssertionError("This method should not be called.");
}

@Override
public boolean hasReminder(Reminder reminder) {
throw new AssertionError("This method should not be called.");
Expand Down

0 comments on commit 37693cf

Please sign in to comment.