From 1b2d41b5fa0a8510221b604c4ce56088f7c1e8e4 Mon Sep 17 00:00:00 2001
From: Daniel Hammer <dlehammer@users.noreply.github.com>
Date: Sun, 4 Feb 2024 15:15:59 +0100
Subject: [PATCH] Aligned timeType with Java LocalTime

Ie.  https://docs.oracle.com/javase/8/docs/api/java/time/LocalTime.html
---
 jsonschema2pojo-gradle-plugin/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/jsonschema2pojo-gradle-plugin/README.md b/jsonschema2pojo-gradle-plugin/README.md
index 29ded90c4..6654fc6cb 100644
--- a/jsonschema2pojo-gradle-plugin/README.md
+++ b/jsonschema2pojo-gradle-plugin/README.md
@@ -266,7 +266,7 @@ jsonSchema2Pojo {
   dateTimeType = "java.time.LocalDateTime"
 
   // What type to use instead of string when adding string properties of format "time" to Java types
-  timeType = "java.time.LocalDate"
+  timeType = "java.time.LocalTime"
 
   // A custom pattern to use when formatting date fields during serialization. Requires support from
   // your JSON binding library.