menegatti
02/16/2018, 2:45 PMsearchResults = intent?.extras?.getSerializable(CAR_SEARCH_RESULTS_EXTRA) as ArrayList<GetWishResponse>
populateResultsList(searchResults)
setupCircularProgressBars(searchResults)
it is first important to notice that the first line will throw a ClassCastException
if the return of getSerializable
is null
, since ArrayList<GetWishResponse>
is not nullable