Skip to content

Instantly share code, notes, and snippets.

View hmshohrab's full-sized avatar
🎯
Focusing

Md Shohrab Hossen hmshohrab

🎯
Focusing
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()