updating class doc to mention its not thread safe

This commit is contained in:
Adam Brown 2021-10-14 12:25:13 +01:00
parent 84b44f6093
commit 00beb27b56
1 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,8 @@
package im.vector.app.features.notifications
/**
* A FIFO circular buffer of strings
* A FIFO circular buffer of T
* This class is not thread safe
*/
class CircularCache<T>(cacheSize: Int) {