Commit f4eb6a5a authored by fallenstardust's avatar fallenstardust

用空list替换传参null

parent 49971ee0
...@@ -155,7 +155,8 @@ public class CardLoader implements ICardLoader { ...@@ -155,7 +155,8 @@ public class CardLoader implements ICardLoader {
return tmp; return tmp;
}).fail((e) -> { }).fail((e) -> {
if (mCallBack != null) { if (mCallBack != null) {
mCallBack.onSearchResult(null, false); ArrayList<Card> noting = new ArrayList<Card>();
mCallBack.onSearchResult(noting, false);
} }
Log.e("kk", "search", e); Log.e("kk", "search", e);
wait.dismiss(); 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