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

Commit 4b220954 authored by Shunta Sato's avatar Shunta Sato Committed by android-build-merger
Browse files

Merge "Make RankingHelper$Record.groups thread-safe" into oc-dev am: 892cd3e1

am: da1c1140

Change-Id: Ic2edc84d54098776e0de672a7eb0d2cee95d5be1
parents 0612a84a da1c1140
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -53,6 +53,7 @@ import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.concurrent.ConcurrentHashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
@@ -1186,6 +1187,6 @@ public class RankingHelper implements RankingConfig {
        boolean showBadge = DEFAULT_SHOW_BADGE;

        ArrayMap<String, NotificationChannel> channels = new ArrayMap<>();
        ArrayMap<String, NotificationChannelGroup> groups = new ArrayMap<>();
        Map<String, NotificationChannelGroup> groups = new ConcurrentHashMap<>();
   }
}