Skip to content

Commit

Permalink
small record support improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
hohwille committed Oct 18, 2023
1 parent 981f366 commit 238899e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public final class CodeTypeCategory {
/** {@link CodeTypeCategory} for an {@link Class#isAnnotation() annotation}. */
public static final CodeTypeCategory ANNOTATION = new CodeTypeCategory("annotation");

/** {@link CodeTypeCategory} for an {@link Class#isRecord() annotation}. */
/** {@link CodeTypeCategory} for an {@link Class#isRecord() record}. */
public static final CodeTypeCategory RECORD = new CodeTypeCategory("record");

private final String value;
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<description>Library to parse, analyze, transform and generate code with reflective support for both byte-code and source-code.</description>

<properties>
<java.version>11</java.version>
<java.version>17</java.version>
<mmm.repository>code</mmm.repository>
</properties>

Expand Down

0 comments on commit 238899e

Please sign in to comment.