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

Commit 47335f6e authored by Julia Reynolds's avatar Julia Reynolds Committed by Android (Google) Code Review
Browse files

Merge "Catch unbinding errors" into pi-dev

parents 8982a81f 7e9659fa
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -982,7 +982,11 @@ abstract public class ManagedServices {
                    Slog.w(TAG, getCaption() + " binding died: " + name);
                    synchronized (mMutex) {
                        mServicesBinding.remove(servicesBindingTag);
                        try {
                            mContext.unbindService(this);
                        } catch (IllegalArgumentException e) {
                            Slog.e(TAG, "failed to unbind " + name, e);
                        }
                        if (!mServicesRebinding.contains(servicesBindingTag)) {
                            mServicesRebinding.add(servicesBindingTag);
                            mHandler.postDelayed(new Runnable() {