Skip to content

Commit

Permalink
Bug Fix for Delete
Browse files Browse the repository at this point in the history
  • Loading branch information
yyyaohhh committed Oct 17, 2023
1 parent dba6157 commit 40aa6bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class DeleteCommandParser implements Parser<DeleteCommand> {
*/
public DeleteCommand parse(String args) throws ParseException {
try {
ModuleCode code = ParserUtil.parseCode(args);
ModuleCode code = ParserUtil.parseModuleCode(args);
return new DeleteCommand(code);

} catch (ParseException pe) {
Expand Down

0 comments on commit 40aa6bc

Please sign in to comment.