Skip to content

Commit c02a743

Browse files
committed
Revert redundant order by
1 parent 3560853 commit c02a743

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

csharp/ql/src/Stubs/Stubs.qll

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,7 @@ abstract private class GeneratedType extends Type, GeneratedElement {
122122
private string stubComment() {
123123
result =
124124
"// Generated from `" + this.getQualifiedName() + "` in `" +
125-
concat(Location l | l = this.getALocation() | l.toString(), "; " order by l.toString()) +
126-
"`\n"
125+
concat(this.getALocation().toString(), "; ") + "`\n"
127126
}
128127

129128
/** Gets the entire C# stub code for this type. */

0 commit comments

Comments
 (0)