Skip to content
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

Fix additem for single character #179

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public AddItemCommand(Item item) {
toAdd = item;
}


@Override
public CommandResult execute(Model model) throws CommandException {
requireNonNull(model);
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/model/item/Item.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class Item implements Cloneable {

public static final String MESSAGE_CONSTRAINTS =
"Item names should contain alphabets and spaces, and cannot be blank.";
public static final String ITEM_NAME_VALIDATION_REGEX = "^[a-zA-Z][a-zA-Z\\s]+$";
public static final String ITEM_NAME_VALIDATION_REGEX = "^[a-zA-Z][a-zA-Z\\s]*$";

private String name;
private int points;
Expand Down
Loading