Skip to content

Commit

Permalink
Show qualified name with generics
Browse files Browse the repository at this point in the history
- This ensures that generics are shown in the Build Items page
  • Loading branch information
gastaldi committed Jul 15, 2024
1 parent d7b84f6 commit 6d8b537
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@ private String buildAttributes(JavaClassSource source) {
if (field.isStatic()) {
continue;
}
sb.append("`").append(field.getType().getName()).append(" ").append(field.getName()).append("` :: ");
sb.append("`").append(field.getType().getQualifiedNameWithGenerics()).append(" ").append(field.getName())
.append("` :: ");
sb.append("+++").append(javadocToHTML(getJavaDoc(field))).append("+++");
sb.append("\n");
}
Expand Down

0 comments on commit 6d8b537

Please sign in to comment.