Skip to content

Commit

Permalink
Merge a63cc4f into 88914ca
Browse files Browse the repository at this point in the history
  • Loading branch information
racheltanxueqi committed Mar 27, 2019
2 parents 88914ca + a63cc4f commit 911a32f
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

import seedu.equipment.commons.core.Messages;
import seedu.equipment.logic.commands.AddCommand;
import seedu.equipment.logic.commands.AddWorkListCommand;
import seedu.equipment.logic.commands.ClearCommand;
import seedu.equipment.logic.commands.Command;
import seedu.equipment.logic.commands.DeleteCommand;
Expand Down Expand Up @@ -53,6 +54,9 @@ public Command parseCommand(String userInput) throws ParseException {
case AddCommand.COMMAND_WORD:
return new AddCommandParser().parse(arguments);

case AddWorkListCommand.COMMAND_WORD:
return new AddWorkListCommandParser().parse(arguments);

case EditCommand.COMMAND_WORD:
return new EditCommandParser().parse(arguments);

Expand Down

0 comments on commit 911a32f

Please sign in to comment.