☠🇷
@SuppressLint("StaticFieldLeak")
internal inner class L086Task : AsyncTask<Unit?, Unit?, Unit?>() {
override fun onPreExecute() {
super.onPreExecute()
tvInfo.setText(R.string.begin)
}
override fun doInBackground(vararg units: Unit?): Unit? {
try {
TimeUnit.SECONDS.sleep(2)
} catch (e: InterruptedException) {
e.printStackTrace()
}
return null
}
override fun onPostExecute(aUnit: Unit?) {
super.onPostExecute(aUnit)
tvInfo.setText(R.string.end)
}
}