MutableList use as keyword
`when(msg?.what){
MESSAGE_GET_LIST -> {
if (msg.obj != null && msg.obj is MutableList<*>){
list = msg.obj as MutableList<BaseIncomeBean>
`
when I received a message and want to use it ,I must covert to MutableList use as keyword
Finally build my project and appear following warning
Warning:(51, 40) Unchecked cast: Any! to MutableList<BaseIncomeBean>
How do I fix this warning?