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

Commit 533e69f0 authored by John Reck's avatar John Reck
Browse files

Minor cleanup

Change-Id: Ide35e6cf2abe2b723e6d45e796a21ae135706bf5
parent a0e9d0f6
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);