Skip to content

Commit

Permalink
Merge pull request #246 from AY2324S1-CS2103T-F08-0/delete-edit-1
Browse files Browse the repository at this point in the history
Delete edit feature
  • Loading branch information
xxiaoweii authored Nov 12, 2023
2 parents ff03b5d + 89c5d41 commit 6b4ac54
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import seedu.address.logic.commands.ClearCommand;
import seedu.address.logic.commands.Command;
import seedu.address.logic.commands.DeleteCommand;
import seedu.address.logic.commands.EditCommand;
import seedu.address.logic.commands.ExitCommand;
import seedu.address.logic.commands.FavListCommand;
import seedu.address.logic.commands.FavouriteCommand;
Expand Down Expand Up @@ -56,7 +55,6 @@ public class AddressBookParser {
*/
public AddressBookParser() {
wordToCommandMap.put(AddCommand.COMMAND_WORD, (arguments) -> new AddCommandParser().parse(arguments));
wordToCommandMap.put(EditCommand.COMMAND_WORD, (arguments) -> new EditCommandParser().parse(arguments));
wordToCommandMap.put(DeleteCommand.COMMAND_WORD, (arguments) -> new DeleteCommandParser().parse(arguments));
wordToCommandMap.put(ClearCommand.COMMAND_WORD, (arguments) -> new ClearCommand());

Expand Down

0 comments on commit 6b4ac54

Please sign in to comment.