HHH-12612 - Use getQualifiedName rather than toString.

This commit is contained in:
Chris Cranford 2018-05-24 17:00:10 -04:00
parent d5244de697
commit 5674eae3ae
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();
}
}
}