-
Notifications
You must be signed in to change notification settings - Fork 73
It's my code ! #1
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
base: master
Are you sure you want to change the base?
Conversation
| ListOrderThread listOrderThread = new ListOrderThread(); | ||
|
|
||
| DateFormat currentDateFormat = new SimpleDateFormat("dd MMM yyyy"); | ||
| DateFormat currentDateFormat = new SimpleDateFormat("yyyy/MM/dd"); |
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.
Recommendation generated by Amazon CodeGuru Reviewer
The SimpleDateFormat object was created without setting the time zone. Make sure that you want to use the default time zone or use letter z, Z or X in the pattern. Otherwise, if you don?t call setTimeZone() on the created SimpleDateFormat object, you might get an unexpected date and time when using the object.
| ListOrderThread listOrderThread = new ListOrderThread(); | ||
|
|
||
| DateFormat currentDateFormat = new SimpleDateFormat("dd MMM yyyy"); | ||
| DateFormat currentDateFormat = new SimpleDateFormat("yyyy/MM/dd"); |
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.
Recommendation generated by Amazon CodeGuru Reviewer
The SimpleDateFormat object was created without setting the time zone. Make sure that you want to use the default time zone or use letter z, Z or X in the pattern. Otherwise, if you don?t call setTimeZone() on the created SimpleDateFormat object, you might get an unexpected date and time when using the object.
| ListOrderThread listOrderThread = new ListOrderThread(); | ||
|
|
||
| DateFormat currentDateFormat = new SimpleDateFormat("dd MMM yyyy"); | ||
| DateFormat currentDateFormat = new SimpleDateFormat("yyyy/MM/dd"); |
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.
Recommendation generated by Amazon CodeGuru Reviewer
The SimpleDateFormat object was created without setting the time zone. Make sure that you want to use the default time zone or use letter z, Z or X in the pattern. Otherwise, if you don?t call setTimeZone() on the created SimpleDateFormat object, you might get an unexpected date and time when using the object.
| ListOrderThread listOrderThread = new ListOrderThread(); | ||
|
|
||
| DateFormat currentDateFormat = new SimpleDateFormat("dd MMM yyyy"); | ||
| DateFormat currentDateFormat = new SimpleDateFormat("yyyy/MM/dd"); |
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.
Recommendation generated by Amazon CodeGuru Reviewer
The SimpleDateFormat object was created without setting the time zone. Make sure that you want to use the default time zone or use letter z, Z or X in the pattern. Otherwise, if you don?t call setTimeZone() on the created SimpleDateFormat object, you might get an unexpected date and time when using the object.
No description provided.