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

Commit d43fdd5e authored by Joe LaPenna's avatar Joe LaPenna Committed by Android Git Automerger
Browse files

am 97eaa6e6: am 551de25f: am ebff4c1d: Merge "Do not wtf when the systemui is...

am 97eaa6e6: am 551de25f: am ebff4c1d: Merge "Do not wtf when the systemui is not present." into cw-e-dev

* commit '97eaa6e6':
  Do not wtf when the systemui is not present.
parents ac1e9d62 97eaa6e6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -273,7 +273,8 @@ class BluetoothManagerService extends IBluetoothManager.Stub {
            sysUiUid = mContext.getPackageManager().getPackageUid("com.android.systemui",
                    UserHandle.USER_OWNER);
        } catch (PackageManager.NameNotFoundException e) {
            Log.wtf(TAG, "Unable to resolve SystemUI's UID.", e);
            // Some platforms, such as wearables do not have a system ui.
            Log.w(TAG, "Unable to resolve SystemUI's UID.", e);
        }
        mSystemUiUid = sysUiUid;
    }