Added instructions for RecyclerAdapter cleanup & corrected method names #88
+14
−1
roughike
commented
puf
commented
Thanks for the PR and good catches. I'm not sure how that release()
snuck in there, because the method has always been called cleanup()
. Well.... fixed now. Thanks again!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Somebody that wants to jump right in and use the
RecyclerAdapter
, might just skip through theListAdapter
example and forget to callcleanup()
on it.Also, the method name seemed to be incorrect in the instructions but right in the code: instead of
release()
the correct method iscleanup()
just like above.