Skip to content

Commit

Permalink
Update AddCommandParser.java
Browse files Browse the repository at this point in the history
  • Loading branch information
shittake authored Mar 15, 2023
1 parent 6b0cc79 commit 3037968
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public AddCommand parse(String args) throws ParseException {
Photo photo = ParserUtil.parsePhoto(argMultimap.getValue(PREFIX_PHOTO).get());
Address address = ParserUtil.parseAddress(argMultimap.getValue(PREFIX_ADDRESS).get());

Remark remark = new Remark(""); // add command does not allow adding remarks straight away
Remark remark = new Remark(); // add command does not allow adding remarks straight away
Performance performance = ParserUtil.parsePerformance(argMultimap.getValue(PREFIX_PERFORMANCE).get());

Set<Tag> tagList = ParserUtil.parseTags(argMultimap.getAllValues(PREFIX_TAG));
Expand Down

0 comments on commit 3037968

Please sign in to comment.