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

Commit 08312e40 authored by Yao Chen's avatar Yao Chen Committed by Android Git Automerger
Browse files

am 31f80f0f: Assign bindService() result to a boolean directly. One less if-else

* commit '31f80f0fddd2b59d3722dd73c942eaecf11e12c3':
  Assign bindService() result to a boolean directly. One less if-else
parents e3fafc1d c8a3e0dc
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -143,9 +143,7 @@ public final class MediaBrowser {

        boolean bound = false;
        try {
            if (mContext.bindService(intent, mServiceConnection, Context.BIND_AUTO_CREATE)) {
                bound = true;
            }
            bound = mContext.bindService(intent, mServiceConnection, Context.BIND_AUTO_CREATE);
        } catch (Exception ex) {
            Log.e(TAG, "Failed binding to service " + mServiceComponent);
        }