删除无用代码

This commit is contained in:
liujing
2020-07-31 15:04:42 +08:00
parent 70a617d915
commit 3a66f07f5e

View File

@@ -46,18 +46,15 @@ public class ShareEventsFragment extends MvpFragment implements AdapterCallback
private ArrayList dataArrayList = new ArrayList();
private EventApiService eventApiService;
private int pageNum = 1;
private View emptyView;
final CountDownLatch countDownLatch = new CountDownLatch(2);
@Override
protected int getLayoutId() {
Log.d(TAG, "getLayoutId");
return R.layout.module_event_panel_share_recylerview;
}
@Override
protected void initViews() {
Log.d(TAG, "initViews");
initRecyclerView();
initData();
}
@@ -66,7 +63,6 @@ public class ShareEventsFragment extends MvpFragment implements AdapterCallback
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
super.onCreateView(inflater, container, savedInstanceState);
emptyView = inflater.inflate(R.layout.module_event_panel_share_empty, container, false);
return mRootView;
}