Skip to content

Commit

Permalink
MID-6271 more popover stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Apr 29, 2022
1 parent f33ace9 commit 0c5a677
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import org.apache.wicket.Component;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.behavior.AttributeAppender;
import org.apache.wicket.markup.html.WebMarkupContainer;
import org.apache.wicket.markup.html.basic.Label;
import org.apache.wicket.markup.html.border.Border;
import org.apache.wicket.model.IModel;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ protected void onInitialize() {
}

private <S extends SearchItem, T extends Serializable> void initLayout() {
moreDialogModel = new LoadableModel<MoreDialogDto>(false) {
moreDialogModel = new LoadableModel<>(false) {

private static final long serialVersionUID = 1L;

Expand Down Expand Up @@ -268,7 +268,7 @@ protected IModel<String> createHelpModel() {

Popover popover = initPopover();

AjaxLink<Void> more = new AjaxLink<Void>(ID_MORE) {
AjaxLink<Void> more = new AjaxLink<>(ID_MORE) {
private static final long serialVersionUID = 1L;

@Override
Expand Down

0 comments on commit 0c5a677

Please sign in to comment.