Skip to content

Commit

Permalink
Bug 1603275 - Fix checkstyle error in StreamRecyclerAdapter.java. a=b…
Browse files Browse the repository at this point in the history
…ustage
  • Loading branch information
rvandermeulen committed Jan 7, 2020
1 parent c328bff commit 6f80932
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public StreamViewHolder onCreateViewHolder(@NonNull final ViewGroup parent, fina

if (type == RowItemType.PROMO_BANNER.getViewType()) {
return new FirefoxPromoBannerRow(inflater.inflate(FirefoxPromoBannerRow.LAYOUT_ID, parent, false), onUrlOpenListener);
} else if(type == RowItemType.FXA_BANNER.getViewType()) {
} else if (type == RowItemType.FXA_BANNER.getViewType()) {
return new FxaBannerRow(inflater.inflate(FxaBannerRow.LAYOUT_ID, parent, false));
} else if (type == RowItemType.TOP_PANEL.getViewType()) {
return new TopPanelRow(inflater.inflate(TopPanelRow.LAYOUT_ID, parent, false), onUrlOpenListener, (topSite, absolutePosition, tabletContextMenuAnchor, faviconWidth, faviconHeight) -> {
Expand Down

0 comments on commit 6f80932

Please sign in to comment.