(maxEntries: number)
| 193 | new LruCache<RecipientCounts>(); |
| 194 | |
| 195 | export function updateCacheMaxEntries(maxEntries: number) { |
| 196 | if (cachedSorted != null) { |
| 197 | cachedSorted.setMaxEntries(maxEntries); |
| 198 | } |
| 199 | if (cachedRecipientCounts != null) { |
| 200 | cachedRecipientCounts.setMaxEntries(maxEntries); |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | /** |
| 205 | * Interface for the optional object used for probing the memory |
nothing calls this directly
no test coverage detected
searching dependent graphs…