Revert redundant order by

This commit is contained in:
Tamas Vajk
2021-09-03 16:51:32 +02:00
parent 3560853f36
commit c02a743835

View File

@@ -122,8 +122,7 @@ abstract private class GeneratedType extends Type, GeneratedElement {
private string stubComment() {
result =
"// Generated from `" + this.getQualifiedName() + "` in `" +
concat(Location l | l = this.getALocation() | l.toString(), "; " order by l.toString()) +
"`\n"
concat(this.getALocation().toString(), "; ") + "`\n"
}
/** Gets the entire C# stub code for this type. */