Commit f4eb6a5a authored by fallenstardust's avatar fallenstardust

用空list替换传参null

parent 49971ee0
......@@ -155,7 +155,8 @@ public class CardLoader implements ICardLoader {
return tmp;
}).fail((e) -> {
if (mCallBack != null) {
mCallBack.onSearchResult(null, false);
ArrayList<Card> noting = new ArrayList<Card>();
mCallBack.onSearchResult(noting, false);
}
Log.e("kk", "search", e);
wait.dismiss();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment