We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We have used java.util.Date in places on the layout server. This has issues described in this article and should be replaced with java.time.LocalDate.
java.util.Date
java.time.LocalDate
Replace all uses of java.util.Date in the layout-server module with java.time.LocalDate. This includes (but is not limited to) the following classes:
layout-server
LayoutService
ErrorResponse
MetadataResponseDto
Metadata
LayoutServiceTest
The text was updated successfully, but these errors were encountered:
pling-scottlogic
No branches or pull requests
Background
We have used
java.util.Date
in places on the layout server. This has issues described in this article and should be replaced withjava.time.LocalDate
.Work Required
Replace all uses of
java.util.Date
in thelayout-server
module withjava.time.LocalDate
. This includes (but is not limited to) the following classes:LayoutService
ErrorResponse
MetadataResponseDto
Metadata
LayoutServiceTest
The text was updated successfully, but these errors were encountered: