We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 664f837 commit 6d0d829Copy full SHA for 6d0d829
client/src/main/java/io/split/client/impressions/UniqueKeysTrackerImp.java
@@ -180,15 +180,7 @@ private int getChunkSize(List<UniqueKeys.UniqueKey> uniqueKeysChunk) {
180
}
181
return totalSize;
182
183
-
184
- private int getTrackerKeysSize() {
185
- int totalSize = 0;
186
- for (Map.Entry<String,HashSet<String>> item : uniqueKeysTracker.entrySet()) {
187
- totalSize += item.getValue().size();
188
- }
189
- return totalSize;
190
191
+
192
private interface ExecuteUniqueKeysAction{
193
void execute();
194
0 commit comments