Skip to content

Commit

Permalink
fix: Wrong validation in Qute with Java field with annotation (#1052)
Browse files Browse the repository at this point in the history
Fixes #1052

Signed-off-by: azerr <[email protected]>
  • Loading branch information
angelozerr committed Jul 27, 2023
1 parent dd7adb6 commit 5352b81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public String resolveFieldSignature(PsiVariable field) {
StringBuilder signature = new StringBuilder(field.getName());
signature.append(" : ");
try {
signature.append(field.getType().getCanonicalText(true));
signature.append(PsiTypeUtils.resolveSignature(field.getType(), false));
} catch (RuntimeException e) {
LOGGER.log(Level.WARNING, "Error while resolving field type '" + field.getName() + "'", e);
}
Expand Down

0 comments on commit 5352b81

Please sign in to comment.