Skip to content

Instantly share code, notes, and snippets.

View showrav017's full-sized avatar
coffee

Muhammad Ehsanul Hoque showrav017

coffee
View GitHub Profile
/**
* Default implementation of [LocaleHelperKt].
*/
class DefaultLocaleHelper private constructor(context: Context) : BaseLocaleHelper(context) {
companion object {
/* Mark the instance as Volatile*/
@Volatile
private var instance: LocaleHelperKt? = null
private var LOCK: Any = Any()