C#: Remove trailing whitespace after comma, when priting callable in CSV format.

This commit is contained in:
Michael Nebel
2021-12-02 11:11:44 +01:00
parent 37644d30d2
commit edf7724579

View File

@@ -12,7 +12,7 @@ abstract class IncludeSummarizedCallable extends RelevantSummarizedCallable {
concat(Parameter p, int i |
p = this.getParameter(i)
|
p.getType().getQualifiedName(), ", " order by i
p.getType().getQualifiedName(), "," order by i
)
}