Fix erroneous space in type name

This commit is contained in:
Tamas Vajk
2021-07-13 13:43:02 +02:00
parent 0cfd73c818
commit 99fe9d8d07

View File

@@ -378,8 +378,7 @@ class ConstructedType extends ValueOrRefType, ConstructedGeneric {
language[monotonicAggregates]
private string getTypeArgumentsNames() {
result =
strictconcat(Type t, int i | t = this.getTypeArgument(i) | t.getName(), ", " order by i)
result = strictconcat(Type t, int i | t = this.getTypeArgument(i) | t.getName(), "," order by i)
}
language[monotonicAggregates]