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

Commit e817b28f authored by Shikha Malhotra's avatar Shikha Malhotra Committed by Android (Google) Code Review
Browse files

Merge changes from topic "presubmit-am-48b4a1a09fd34b6e9005b3be7f425a3c" into tm-mainline-prod

* changes:
  [automerge] Add a check that installD is available before using it 2p: f17edfd4
  Add a check that installD is available before using it
parents 6438f215 ef6fadaf
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -287,6 +287,9 @@ public class Installer extends SystemService {
     * Sets in Installd that it is first boot after data wipe
     * Sets in Installd that it is first boot after data wipe
     */
     */
    public void setFirstBoot() throws InstallerException {
    public void setFirstBoot() throws InstallerException {
        if (!checkBeforeRemote()) {
            return;
        }
        try {
        try {
            mInstalld.setFirstBoot();
            mInstalld.setFirstBoot();
        } catch (RemoteException e) {
        } catch (RemoteException e) {