Skip to content

Commit

Permalink
Reuse getQualifiedName
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed May 14, 2022
1 parent a95c21d commit e15eff2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 195,10 @@ public String getSimpleName()
@Override
public String getQualifiedNameWithGenerics()
{
String result = type.toString();
String result = getQualifiedName();
if (origin instanceof Importer<?>)
{
return Types.rebuildGenericNameWithArrays(((Importer<?>) origin).resolveType(result), this);
result = Types.rebuildGenericNameWithArrays(result, this);
}
return result;
}
Expand Down

0 comments on commit e15eff2

Please sign in to comment.