Add method removeEmptyView()
;
Add method getItemOrNull()
;
Add annotation;
Optimization code;
Change convert(helper: VH, item: T?)
to convert(helper: VH, item: T)
;
Change convert(helper: VH, item: T?, payloads: List<Any>)
to convert(helper: VH, item: T, payloads: List<Any>)
;
升级适配:
kotlin
:
将所有convert(helper: VH, item: T?)
中的可空数据item
,变更为convert(helper: VH, item: T)
不为空数据,
也就是将问号
(?
)去掉。
java
:
同样将convert()
中item
的@Nullable
注解改为@NotNull