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

Commit fd32f3e6 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

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



Change-Id: Ia4ad4c992f74e1c78b7c905d9fca76f7e988993e
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 4a3a6313 31195841
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>();
        }
    }