HHH-12612 - Use getQualifiedName rather than toString.

(cherry picked from commit 5674eae)
This commit is contained in:
Chris Cranford 2018-05-24 17:00:10 -04:00
parent 1d129c899d
commit c344860f19
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ public final class TypeUtils {
return erasureType.toString();
}
else {
return context.getTypeUtils().asElement( erasureType ).toString();
return ( (TypeElement) context.getTypeUtils().asElement( erasureType ) ).getQualifiedName().toString();
}
}
}