Skip to content

Commit 533fdcf

Browse files
committed
Rust: Remove unnecessary seperator
1 parent 0d75054 commit 533fdcf

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Diff for: rust/ql/lib/codeql/rust/elements/internal/TypeAliasImpl.qll

+1-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ module Impl {
2424
* ```
2525
*/
2626
class TypeAlias extends Generated::TypeAlias {
27-
override string toStringImpl() {
28-
result = concat(int i | | this.toStringPart(i), "" order by i)
29-
}
27+
override string toStringImpl() { result = concat(int i | | this.toStringPart(i) order by i) }
3028

3129
private string toStringPart(int index) {
3230
index = 0 and result = "type "

0 commit comments

Comments
 (0)