-
Notifications
You must be signed in to change notification settings - Fork 4
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
Add Event Scheduler Feature #60
Add Event Scheduler Feature #60
Conversation
# Conflicts: # src/main/java/seedu/address/logic/parser/CliSyntax.java # src/main/java/seedu/address/logic/parser/ParserUtil.java # src/main/java/seedu/address/model/util/SampleDataUtil.java
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.
Java CI is failing. Please make changes accordingly and test your build with gradle task check
before pushing.
*/ | ||
UserInputHistory<String> getUserInputHistory(); |
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.
I missed this earlier, but it need to be re-added too.
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.
The added features seem to work according to the demo video, but the patch coverage is too low. Will merge for now to do manual testing.
/** | ||
* Signals that the operation is unable to find the specified event. | ||
*/ | ||
public class EventNotFoundException extends RuntimeException { |
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.
Not sure this should be a RuntimeException. Can you explain more about this?
56c4ecd
into
AY2324S2-CS2103T-F12-4:master
Add feature and resolve errors from previous PR