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

Commit e85bd84e authored by Lucas Dupin's avatar Lucas Dupin Committed by Automerger Merge Worker
Browse files

Merge "Catch remote exception" into sc-dev am: d7b2e725

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/13566548

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I75e825177f5cc3990e27651dab6441755e1798f5
parents b3ef0bde d7b2e725
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -194,7 +194,11 @@ public class ThemeOverlayApplier implements Dumpable {
        }

        mExecutor.execute(() -> {
            try {
                mOverlayManager.commit(transaction.build());
            } catch (SecurityException | IllegalStateException e) {
                Log.e(TAG, "setEnabled failed", e);
            }
        });
    }