Skip to content

Commit 036e83a

Browse files
Fix error with implementing interfaces
1 parent 06d6ddc commit 036e83a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/ql/src/Stubs/Stubs.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ abstract private class GeneratedType extends RefType {
6161
exists(string cls, string interface, string int_kw | result = cls + int_kw + interface |
6262
(
6363
if exists(getAnInterestingBaseType().(Class))
64-
then cls = " extends " + stubTypeName(getAnInterestingBaseType())
64+
then cls = " extends " + stubTypeName(getAnInterestingBaseType().(Class))
6565
else cls = ""
6666
) and
6767
(

0 commit comments

Comments
 (0)