Skip to content

Commit

Permalink
fixed checkstyle errors in main
Browse files Browse the repository at this point in the history
  • Loading branch information
Pinran-J committed Oct 27, 2022
1 parent 3dad551 commit 94150c3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

import java.util.List;

import javafx.collections.ObservableList;
import seedu.address.commons.core.Messages;
import seedu.address.commons.core.index.Index;
import seedu.address.logic.commands.exceptions.CommandException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public boolean equals(Object other) {
}

// instanceof handles nulls
if (!(other instanceof EditNoteCommand)) {
if (!(other instanceof EditNoteCommand)) {
return false;
}

Expand Down

0 comments on commit 94150c3

Please sign in to comment.