Skip to content

Commit

Permalink
LPS-107143 rename
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Jan 22, 2020
1 parent b2946a9 commit 86aeb51
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ public SearchRequest build() {
sortOrder = SortOrder.DESC;
}

FieldSort sort = _sorts.field(
FieldSort fieldSort = _sorts.field(
_sortFieldBuilder.getSortField(
User.class.getName(), _sortField),
sortOrder);

searchRequestBuilder.sorts(sort);
searchRequestBuilder.sorts(fieldSort);
}

return searchRequestBuilder.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -313,12 +313,12 @@ private SearchRequest _getSearchRequest(
sortOrder = SortOrder.DESC;
}

FieldSort sort = _sorts.field(
FieldSort fieldSort = _sorts.field(
_sortFieldBuilder.getSortField(
AccountEntry.class.getName(), orderByField),
sortOrder);

searchRequestBuilder.sorts(sort);
searchRequestBuilder.sorts(fieldSort);
}

return searchRequestBuilder.build();
Expand Down

0 comments on commit 86aeb51

Please sign in to comment.