refactor: java 5 migration aid - remove unnecessary unboxing

This commit is contained in:
エリス 2024-12-05 18:24:23 +09:00
parent 680407fa58
commit f9bf8a14f8
No known key found for this signature in database
GPG Key ID: 2E5FF17FB26AF7F2

View File

@ -81,7 +81,7 @@ public class SystemWebView extends WebView implements CordovaWebViewEngine.Engin
public boolean dispatchKeyEvent(KeyEvent event) {
Boolean ret = parentEngine.client.onDispatchKeyEvent(event);
if (ret != null) {
return ret.booleanValue();
return ret;
}
return super.dispatchKeyEvent(event);
}