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

@@ -9,8 +9,8 @@ import android.app.Activity;
class Test {
class A extends WebViewClient {
public void onReceivedSslError (WebView view, SslErrorHandler handler, SslError error) {
handler.proceed(); // $hasResult
public void onReceivedSslError (WebView view, SslErrorHandler handler, SslError error) { // $hasResult
handler.proceed();
}
}