You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// To prevent the dictionary from drastically increasing in size by caching images, the dictionary size is not allowed to grow more than the permissibleFactor * maxCached size
46
59
// This is done so that we don't constantly perform this resizing operation and also maintain the image cache size at the same time
47
60
if(Data.Count>permissibleFactor*MaxCached)
48
61
{
49
62
// To delete the images from the data dictionary based on the resizing of the Usage Dictionary.
0 commit comments