-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove traces of address book #260
Remove traces of address book #260
Conversation
*/ | ||
public class AddCommand extends Command { | ||
|
||
public static final String COMMAND_WORD = "add"; | ||
|
||
public static final String MESSAGE_USAGE = COMMAND_WORD + ": Adds a person to the address book. " | ||
public static final String MESSAGE_USAGE = COMMAND_WORD + ": Adds a person to the campus connect. " |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here is a feature change.
@@ -33,7 +33,7 @@ public class AddCommand extends Command { | |||
+ PREFIX_TAG + "owesMoney"; | |||
|
|||
public static final String MESSAGE_SUCCESS = "New person added: %1$s"; | |||
public static final String MESSAGE_DUPLICATE_PERSON = "This person already exists in the address book"; | |||
public static final String MESSAGE_DUPLICATE_PERSON = "This person already exists in the campus connect"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
^
./seedu/address/MainApp.java:71: * Returns a {@code ModelManager} with the data from {@code storage}'s address book and {@code userPrefs}. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
|
@@ -47,7 +47,7 @@ public class EditCommand extends Command { | |||
|
|||
public static final String MESSAGE_EDIT_PERSON_SUCCESS = "Edited Person: %1$s"; | |||
public static final String MESSAGE_NOT_EDITED = "At least one field to edit must be provided."; | |||
public static final String MESSAGE_DUPLICATE_PERSON = "This person already exists in the address book."; | |||
public static final String MESSAGE_DUPLICATE_PERSON = "This person already exists in the campus connect."; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
^
@@ -9,7 +9,7 @@ public class ExitCommand extends Command { | |||
|
|||
public static final String COMMAND_WORD = "exit"; | |||
|
|||
public static final String MESSAGE_EXIT_ACKNOWLEDGEMENT = "Exiting Address Book as requested ..."; | |||
public static final String MESSAGE_EXIT_ACKNOWLEDGEMENT = "Exiting Campus Connect as requested ..."; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
^
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Perhaps can change to CampusConnect in the future to sound more professional but this will do for today
Some messages displayed still use "address book".
I have changed all of these to "campus connect".
We can correct our documentation at the last iteration.
Closes #259