From 7fd84797c4d68b2dcebadf77d274da7290769f80 Mon Sep 17 00:00:00 2001 From: djibodu Date: Fri, 11 Oct 2024 13:43:47 -0400 Subject: [PATCH] fixed self closing paragraph tags causing javadoc errors --- .../confluent/kafka/schemaregistry/ParsedSchema.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/client/src/main/java/io/confluent/kafka/schemaregistry/ParsedSchema.java b/client/src/main/java/io/confluent/kafka/schemaregistry/ParsedSchema.java index 8b309137518..4f3e2086359 100644 --- a/client/src/main/java/io/confluent/kafka/schemaregistry/ParsedSchema.java +++ b/client/src/main/java/io/confluent/kafka/schemaregistry/ParsedSchema.java @@ -203,9 +203,9 @@ default void validate(boolean strict) { /** * Checks the backward compatibility between this schema and the specified schema. - *

- * Custom providers may choose to modify this schema during this check, - * to ensure that it is compatible with the specified schema. + * + *

Custom providers may choose to modify this schema during this check, + * to ensure that it is compatible with the specified schema.

* * @param previousSchema previous schema * @return an empty list if this schema is backward compatible with the previous schema, @@ -215,9 +215,9 @@ default void validate(boolean strict) { /** * Checks the compatibility between this schema and the specified schemas. - *

- * Custom providers may choose to modify this schema during this check, - * to ensure that it is compatible with the specified schemas. + * + *

Custom providers may choose to modify this schema during this check, + * to ensure that it is compatible with the specified schemas.

* * @param level the compatibility level * @param previousSchemas full schema history in chronological order