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

Commit fe4e1b65 authored by Jim Miller's avatar Jim Miller Committed by Android (Google) Code Review
Browse files

Merge "Fix infinite loop in TrustManagerService exception handler."

parents ce271360 577b6f6a
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -324,8 +324,6 @@ public class TrustManagerService extends SystemService {
                mTrustListeners.get(i).onTrustChanged(enabled, userId);
            } catch (RemoteException e) {
                Slog.e(TAG, "Exception while notifying TrustListener. Removing listener.", e);
                mTrustListeners.get(i);
                i--;
            }
        }
    }