Skip to content

Commit

Permalink
Fix javadoc generation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Jun 13, 2024
1 parent a62264f commit 4cd07e2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -262,11 +262,11 @@ public enum Feature
USE_IS_GETTERS(true, true),

/**
* Feature that provides serialization support for Groovy & Java 17 records, by allowing
* Feature that provides serialization support for Groovy and Java 17 records, by allowing
* reading of "non-get-getters" in a class, (like for a field named <code>amount</code>
* the getter would be <code>amount()</code>).
*
* @implNote <p>Feature is disabled by default for backward compatibility.</p>
*<p>
* Feature is disabled by default for backward compatibility.
*
* @since 2.17
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,8 @@ private static String decap(String name) {

/**
* Helper method to detect Groovy's problematic metadata accessor type.
*
* @implNote Groovy MetaClass have cyclic reference, and hence the class containing it should not be serialised without
* either removing that reference, or skipping over such references.
* Groovy MetaClass have cyclic reference, and hence the class containing it should not be
* serialized without either removing that reference, or skipping over such references.
*/
protected static boolean isGroovyMetaClass(Class<?> clazz) {
return "groovy.lang.MetaClass".equals(clazz.getName());
Expand Down

0 comments on commit 4cd07e2

Please sign in to comment.