Fix missing/misplacement of <p> tag in Jackson2HashMapper Javadoc.

Resolves #2586
This commit is contained in:
John Blum
2023-06-14 09:42:17 -07:00
parent ccdfcf2e45
commit 433bb89d9b

View File

@@ -76,7 +76,7 @@ import com.fasterxml.jackson.databind.ser.std.DateSerializer;
* Flattening requires all property names to not interfere with JSON paths. Using dots or brackets in map keys or as
* property names is not supported using flattening. The resulting hash cannot be mapped back into an Object.
* <h3>Example</h3>
*
* <p>
* <pre class="code">
* class Person {
* String firstname;
@@ -85,7 +85,7 @@ import com.fasterxml.jackson.databind.ser.std.DateSerializer;
* Date date;
* LocalDateTime localDateTime;
* }
* <p>
*
* class Address {
* String city;
* String country;