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

Commit da1c1140 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: Ie1011f5c27008e50cdf9430669ef1d3ceb1f38e9
parents 12e99678 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<>();
   }
}