From 73ba10e5dac3a9c83a33c7220d231febab3c8ff8 Mon Sep 17 00:00:00 2001 From: Ladislav Thon Date: Thu, 24 Oct 2024 10:22:44 +0200 Subject: [PATCH] Fix invalid HTML in Type.parse() javadoc --- core/src/main/java/org/jboss/jandex/Type.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/jboss/jandex/Type.java b/core/src/main/java/org/jboss/jandex/Type.java index ab632d98..789e2e45 100644 --- a/core/src/main/java/org/jboss/jandex/Type.java +++ b/core/src/main/java/org/jboss/jandex/Type.java @@ -272,7 +272,7 @@ public static Type createWithAnnotations(DotName name, Kind kind, AnnotationInst * PrimitiveType -> 'boolean' | 'byte' | 'short' | 'int' * | 'long' | 'float' | 'double' | 'char' * ReferenceType -> PrimitiveType ('[' ']')+ - * | ClassType ('<' TypeArgument (',' TypeArgument)* '>')? ('[' ']')* + * | ClassType ('<' TypeArgument (',' TypeArgument)* '>')? ('[' ']')* * ClassType -> FULLY_QUALIFIED_NAME * TypeArgument -> ReferenceType | WildcardType * WildcardType -> '?' | '?' ('extends' | 'super') ReferenceType