-
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
[mid v1.2] Populating warning panel with real values #62
Conversation
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.
Good job 👍 We might have to include that assumption on local time though since the local Singapore time is assumed we might need to include that in documentation.
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.
Very clean and impressive looking code! Nice!
Populated warning panel with real values. Currently using default thresholds for filtration.
Changed
java.util.Date
inExpiry
tojava.time.LocalDate
as most of the the methods offered under theDate
class have been deprecated since JDK 1.1. In this case,LocalDate
will be more appropriate as the class is up to date. Furthermore, given the scope of this module, it will be safe to assume that the application will only be used locally (in Singapore).JUnit tests and relevant documentations for the current implementations will be completed by next week.