Skip to content

3.0.0

Compare
Choose a tag to compare
@limuyang2 limuyang2 released this 25 Feb 13:15
· 339 commits to master since this release

fix #3001
fix #3046
fix #3032

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