Skip to content

Commit 09e83d1

Browse files
committed
Fix isEnclosingMethodAccess wrapper
1 parent ac38d4c commit 09e83d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1944,7 +1944,7 @@ class MethodCall extends Expr, Call, @methodaccess {
19441944
predicate isEnclosingMethodCall(RefType t) { Qualifier::enclosingMemberAccess(this, t) }
19451945

19461946
/** DEPRECATED: Alias for `isEnclosingMethodCall`. */
1947-
deprecated predicate isEnclosingMethodAccess() { this.isEnclosingMethodCall() }
1947+
deprecated predicate isEnclosingMethodAccess(RefType t) { this.isEnclosingMethodCall(t) }
19481948

19491949
override string getAPrimaryQlClass() { result = "MethodCall" }
19501950
}

0 commit comments

Comments
 (0)