Skip to content

Commit 89abd53

Browse files
committed
Fix
1 parent 77321e6 commit 89abd53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

go/ql/lib/semmle/go/Types.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -894,7 +894,7 @@ private predicate isInterfaceComponentWithQualifiedName(
894894
exists(string name | component_types(intf, idx, name, tp) |
895895
interface_private_method_ids(intf, idx, qualifiedName)
896896
or
897-
not exists(interface_private_method_ids(intf, idx, _)) and qualifiedName = name
897+
not interface_private_method_ids(intf, idx, _) and qualifiedName = name
898898
)
899899
}
900900

0 commit comments

Comments
 (0)