Skip to content

Commit

Permalink
#392 correct output of annotation's value in HTML file
Browse files Browse the repository at this point in the history
  • Loading branch information
siom79 committed Apr 22, 2024
1 parent 1ede31d commit 6c09563
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ private String valueToString(JApiAnnotationElementValue value) {
case Enum:
return value.getFullyQualifiedName() + "." + value.getValue();
default:
return String.valueOf(value);
return value.getValueString();
}
}

Expand Down

0 comments on commit 6c09563

Please sign in to comment.