Skip to content

Commit

Permalink
Code optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
youlookwhat committed May 31, 2024
1 parent 6231a1a commit b612cb9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,14 +223,14 @@ private void checkNoNull() {
/**
* 设置空布局(状态布局),在 setPageData() 时使用到
*/
public void setEmptyView(View emptyView) {
public void setPageEmptyView(View emptyView) {
this.mStateView = emptyView;
}

/**
* 设置空布局(状态布局),在 setPageData() 时使用到
*/
public void setEmptyView(int emptyLayoutId) {
public void setPageEmptyView(int emptyLayoutId) {
if (mRecyclerView == null) {
return;
}
Expand Down

0 comments on commit b612cb9

Please sign in to comment.