File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
java/ql/src/Security/CWE/CWE-295 Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import DataFlow::PathGraph
23
23
*/
24
24
class InsecureX509TrustManager extends RefType {
25
25
InsecureX509TrustManager ( ) {
26
- getASupertype * ( ) instanceof X509TrustManager and
26
+ this . getASupertype * ( ) instanceof X509TrustManager and
27
27
exists ( Method m |
28
28
m .getDeclaringType ( ) = this and
29
29
m .hasName ( "checkServerTrusted" ) and
@@ -34,7 +34,7 @@ class InsecureX509TrustManager extends RefType {
34
34
35
35
/** The `java.security.cert.CertificateException` class. */
36
36
private class CertificateException extends RefType {
37
- CertificateException ( ) { hasQualifiedName ( "java.security.cert" , "CertificateException" ) }
37
+ CertificateException ( ) { this . hasQualifiedName ( "java.security.cert" , "CertificateException" ) }
38
38
}
39
39
40
40
/**
You can’t perform that action at this time.
0 commit comments