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

Commit 551b0380 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Swallow exception from failed idmap2d disable" into sc-dev

parents 6725b633 43b63f0d
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -194,7 +194,13 @@ class IdmapDaemon {
    }

    private static void stopIdmapService() {
        try {
            SystemService.stop(IDMAP_DAEMON);
        } catch (RuntimeException e) {
            // If the idmap daemon cannot be disabled for some reason, it is okay
            // since we already finished invoking idmap.
            Slog.w(TAG, "Failed to disable idmap2 daemon", e);
        }
    }

    private Connection connect() throws TimeoutException, RemoteException {