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

Commit a6016538 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

am: 4b220954

Change-Id: Ia02534a8d23cb857ac0994bca9261aed5696bae7
parents add919b1 4b220954
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<>();
   }
}