Skip to content

Commit e0ef00b

Browse files
committed
Fix implicit 'this' use in TempFileLib
1 parent 95cedd5 commit e0ef00b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ class MethodFileCreateTempFile extends Method {
1818
*/
1919
class MethodFileCreatesDirs extends Method {
2020
MethodFileCreatesDirs() {
21-
getDeclaringType() instanceof TypeFile and
22-
hasName(["mkdir", "mkdirs"])
21+
this.getDeclaringType() instanceof TypeFile and
22+
this.hasName(["mkdir", "mkdirs"])
2323
}
2424
}
2525

0 commit comments

Comments
 (0)