Skip to content

Commit

Permalink
Requested changes made
Browse files Browse the repository at this point in the history
  • Loading branch information
HM33-Stu committed Apr 11, 2024
1 parent da02d5e commit a50823c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/main/java/seedu/address/model/internship/Location.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
* Represents an Internship's location in the internship data.
*/
public class Location {
public static final String MESSAGE_CONSTRAINTS = "Locations have to be either unknown, local, overseas, or remote. "
+ "Else, it will be set to the default value of UNKNOWN";
public static final String MESSAGE_CONSTRAINTS = "Locations have to be either unknown, local, overseas, or remote.";

public static final String VALIDATION_REGEX = "(?i)local|remote|overseas|unknown";

Expand Down
3 changes: 1 addition & 2 deletions src/main/java/seedu/address/model/internship/Role.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
*/
public class Role {

public static final String MESSAGE_CONSTRAINTS =
"Roles should not be blank! Else, it will be set to the default value of " + "Unknown Role";
public static final String MESSAGE_CONSTRAINTS = "Roles should not be blank!";

/*
* Matches any characters that are not only whitespace
Expand Down

0 comments on commit a50823c

Please sign in to comment.