Skip to content

Commit

Permalink
bugfix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
teosarca committed Jun 14, 2017
1 parent 3992bc0 commit 08e33df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ public JSONViewResult(final ViewResult viewResult, final String adLanguage)
final long size = viewResult.getSize();
this.size = size >= 0 ? size : null;

final List<JSONDocumentFilter> stickyFilters = JSONDocumentFilter.ofStickyFiltersList(viewResult.getStickyFilters(), adLanguage);
final List<JSONDocumentFilter> filters = JSONDocumentFilter.ofList(viewResult.getFilters(), adLanguage);
final List<JSONDocumentFilter> stickyFilters = JSONDocumentFilter.ofList(viewResult.getStickyFilters(), adLanguage);
this.filters = ImmutableList.<JSONDocumentFilter> builder()
.addAll(filters)
.addAll(stickyFilters)
Expand Down

0 comments on commit 08e33df

Please sign in to comment.