Skip to content

Commit 63f715e

Browse files
fix implicit this
1 parent dd4e1d0 commit 63f715e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/ql/lib/semmle/code/java/security/SensitiveKeyboardCacheQuery.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class AndroidEditableXmlElement extends AndroidLayoutXmlElement {
4949
/** A `findViewById` or `requireViewById` method on `Activity` or `View`. */
5050
private class FindViewMethod extends Method {
5151
FindViewMethod() {
52-
hasQualifiedName("android.view", "View", ["findViewById", "requireViewById"])
52+
this.hasQualifiedName("android.view", "View", ["findViewById", "requireViewById"])
5353
or
5454
exists(Method m |
5555
m.hasQualifiedName("android.app", "Activity", ["findViewById", "requireViewById"]) and

0 commit comments

Comments
 (0)