This commit is contained in:
Joe Farebrother
2022-06-21 16:15:24 +01:00
parent 498ad230c2
commit a2245bb858
2 changed files with 5 additions and 3 deletions

View File

@@ -2,7 +2,9 @@ import java
class OnReceivedSslErrorMethod extends Method {
OnReceivedSslErrorMethod() {
this.hasQualifiedName("android.webkit", "WebViewClient", "onReceivedSslError")
this.overrides*(any(Method m |
m.hasQualifiedName("android.webkit", "WebViewClient", "onReceivedSslError")
))
}
Parameter handlerArg() { result = this.getParameter(1) }