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

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

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

* commit '3f544e0bb038f8c7fa32ed6b2a29bb91214e8066':
  Assign bindService() result to a boolean directly. One less if-else
parents 88b91d39 08312e40
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);
        }