-
Notifications
You must be signed in to change notification settings - Fork 548
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #180 from HolmesJJ/fix-bugs
Fix some small formats and bugs, remove the sample tag data
- Loading branch information
Showing
30 changed files
with
367 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,6 @@ | |
import static seedu.address.logic.parser.CliSyntax.PREFIX_MEMBER; | ||
import static seedu.address.logic.parser.CliSyntax.PREFIX_NAME; | ||
import static seedu.address.logic.parser.CliSyntax.PREFIX_PHONE; | ||
import static seedu.address.logic.parser.CliSyntax.PREFIX_TAG; | ||
|
||
import seedu.address.logic.commands.exceptions.CommandException; | ||
import seedu.address.model.Model; | ||
|
@@ -23,16 +22,13 @@ public class AddMemberCommand extends AddCommand { | |
+ PREFIX_NAME + " " + "NAME " | ||
+ PREFIX_PHONE + " " + "PHONE " | ||
+ PREFIX_EMAIL + " " + "EMAIL " | ||
+ PREFIX_ADDRESS + " " + "ADDRESS " | ||
+ "[" + PREFIX_TAG + " " + "TAG]...\n" | ||
+ PREFIX_ADDRESS + " " + "ADDRESS\n" | ||
+ "Example: " + COMMAND_WORD + " " | ||
+ PREFIX_MEMBER + " " | ||
+ PREFIX_NAME + " " + "John Doe " | ||
+ PREFIX_PHONE + " " + "98765432 " | ||
+ PREFIX_EMAIL + " " + "[email protected] " | ||
+ PREFIX_ADDRESS + " " + "311, Clementi Ave 2, #02-25 " | ||
+ PREFIX_TAG + " " + "friends " | ||
+ PREFIX_TAG + " " + "owesMoney"; | ||
+ PREFIX_ADDRESS + " " + "311, Clementi Ave 2, #02-25"; | ||
|
||
public static final String MESSAGE_SUCCESS = "New member added: %1$s"; | ||
public static final String MESSAGE_DUPLICATE_MEMBER = "This member already exists in the ezFoodie"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.