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

Commit c8a3e0dc authored by Yao Chen's avatar Yao Chen Committed by Erik Pasternak
Browse files

Assign bindService() result to a boolean directly. One less if-else

Bug: 17637058
Change-Id: If2f4db2ebf95f1912a752794a1ab482cf30ab014
parent f8c4f9ef
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);
        }