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

Commit 769067fb 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

Change-Id: I1805b23929a56b5d54c660db7fdc5383233b3fe4
parents 69a4e37d 892cd3e1
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<>();
   }
}