Merge "Fix infinite loop in TrustManagerService exception handler."

This commit is contained in:
Jim Miller
2014-05-20 00:50:05 +00:00
committed by Android (Google) Code Review

View File

@@ -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--;
}
}
}