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

Commit cc6e7f09 authored by Johannes Gallmann's avatar Johannes Gallmann Committed by Android (Google) Code Review
Browse files

Merge "Fix ConcurrentModificationException in TouchInteractionService" into main

parents b5bf7820 108dc037
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -523,7 +523,8 @@ public class TouchInteractionService extends Service {
        }

        protected void onOverviewTargetChange() {
            for (Runnable listener : mOnOverviewTargetChangeListeners) {
            Set<Runnable> listeners = new HashSet<>(mOnOverviewTargetChangeListeners);
            for (Runnable listener : listeners) {
                listener.run();
            }
        }