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

Commit eb24415f authored by Devin Moore's avatar Devin Moore Committed by Automerger Merge Worker
Browse files

Merge "AudioService: catch RuntimeException for IServiceManager.getService"...

Merge "AudioService: catch RuntimeException for IServiceManager.getService" am: d884be6c am: 31195841 am: fd32f3e6 am: bda5dc42

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



Change-Id: Ida74e755ee14bb57b01fe2161ceac72bd0d9613b
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 489688af bda5dc42
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11456,7 +11456,7 @@ public class AudioService extends IAudioService.Stub
                }
            }
            return pids;
        } catch (RemoteException e) {
        } catch (RemoteException | RuntimeException e) {
            return new HashSet<Integer>();
        }
    }