Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 48ca060e authored by John Reck's avatar John Reck Committed by Android (Google) Code Review
Browse files

Merge "Minor cleanup"

parents 91b7be18 533e69f0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1711,7 +1711,7 @@ class CallbackProxy extends Handler {

    void onIsSupportedCallback(boolean isSupported) {
        Message msg = obtainMessage(SEARCHBOX_IS_SUPPORTED_CALLBACK);
        msg.obj = new Boolean(isSupported);
        msg.obj = Boolean.valueOf(isSupported);
        sendMessage(msg);
    }

+1 −1
Original line number Diff line number Diff line
@@ -252,7 +252,7 @@ public class GeolocationPermissions {
        }
        if (WebViewCore.THREAD_NAME.equals(Thread.currentThread().getName())) {
            boolean allowed = nativeGetAllowed(origin);
            callback.onReceiveValue(new Boolean(allowed));
            callback.onReceiveValue(Boolean.valueOf(allowed));
        } else {
            Map values = new HashMap<String, Object>();
            values.put(ORIGIN, origin);