Move const from file to object

This commit is contained in:
Alex Sytnyk 2018-07-09 16:53:20 +03:00
parent d607e9066d
commit 4e2500578c

View file

@ -6,10 +6,10 @@ import android.util.Log
import net.osmand.telegram.R
import java.util.concurrent.ConcurrentHashMap
private const val TAG = "FontCache"
object FontCache {
private const val TAG = "FontCache"
private val fontsMap = ConcurrentHashMap<String, Typeface>()
fun getRobotoMedium(context: Context): Typeface? {