Move const from file to object
This commit is contained in:
parent
d607e9066d
commit
4e2500578c
1 changed files with 2 additions and 2 deletions
|
@ -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? {
|
||||
|
|
Loading…
Reference in a new issue