Skip to content

Commit 7ac6f58

Browse files
committed
fix Import::getImportString
1 parent 57c39e9 commit 7ac6f58

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)