Skip to content

Commit

Permalink
LPS-134657 Remove field, already inherited from superclass
Browse files Browse the repository at this point in the history
  • Loading branch information
adolfopa committed Jul 13, 2021
1 parent a03d76e commit 22d49de
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ public BlogEntriesManagementToolbarDisplayContext(
httpServletRequest, liferayPortletRequest, liferayPortletResponse,
searchContainer);

_httpServletRequest = httpServletRequest;
_trashHelper = trashHelper;
_displayStyle = displayStyle;

Expand Down Expand Up @@ -311,15 +310,14 @@ private boolean _isSearch() {
private boolean _isTrashEnabled() {
try {
return _trashHelper.isTrashEnabled(
PortalUtil.getScopeGroupId(_httpServletRequest));
PortalUtil.getScopeGroupId(httpServletRequest));
}
catch (PortalException portalException) {
return ReflectionUtil.throwException(portalException);
}
}

private final String _displayStyle;
private final HttpServletRequest _httpServletRequest;
private String _keywords;
private final ThemeDisplay _themeDisplay;
private final TrashHelper _trashHelper;
Expand Down

0 comments on commit 22d49de

Please sign in to comment.