Skip to content

Commit c98d024

Browse files
authored
Merge pull request #8575 from erik-krogh/qlFixTypo
QL: fix Import::getImportString
2 parents 57c39e9 + 7ac6f58 commit c98d024

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ql/ql/src/codeql_ql/ast/Ast.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1134,7 +1134,7 @@ class Import extends TImport, ModuleMember, ModuleRef {
11341134
*/
11351135
string getImportString() {
11361136
exists(string selec |
1137-
not exists(getQualifiedName(_)) and selec = ""
1137+
not exists(getSelectionName(_)) and selec = ""
11381138
or
11391139
selec =
11401140
"::" + strictconcat(int i, string q | q = this.getSelectionName(i) | q, "::" order by i)

0 commit comments

Comments
 (0)