BAEL-6310 - review updates

This commit is contained in:
tudor.marc 2023-06-26 11:47:01 +03:00
parent ec042cb422
commit 68add3d301
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ import java.time.LocalDate;
public class MyHandlerProvider extends ReaderWriterProvider {
public ValueWriter findValueWriter (JSONWriter writeContext,
Class<?> type) {
@Override
public ValueWriter findValueWriter (JSONWriter writeContext, Class<?> type) {
if (type == LocalDate.class) {
return new CustomDateSerializer();
}