Skip to content

Commit b7a0b56

Browse files
committed
Kotlin: Add a this.
1 parent 8a89251 commit b7a0b56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/ql/lib/semmle/code/java/Generics.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ class GenericCall extends Call {
486486

487487
/** Gets a type argument of the call for the given `TypeVariable`. */
488488
RefType getATypeArgument(TypeVariable v) {
489-
result = getAnExplicitTypeArgument(v)
489+
result = this.getAnExplicitTypeArgument(v)
490490
or
491491
not exists(this.getAnExplicitTypeArgument(v)) and
492492
result = this.getAnInferredTypeArgument(v)

0 commit comments

Comments
 (0)