Skip to content

Commit

Permalink
chore: removed unused constructor parameter (#441)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollovati authored Jun 28, 2023
1 parent 7475549 commit 8593b29
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public CdiVaadinServletService(CdiVaadinServlet servlet,
DeploymentConfiguration configuration,
BeanManager beanManager) {
super(servlet, configuration);
this.delegate = new CdiVaadinServiceDelegate(this, beanManager);
this.delegate = new CdiVaadinServiceDelegate(beanManager);
}

@Override
Expand Down Expand Up @@ -164,8 +164,7 @@ public static class CdiVaadinServiceDelegate implements Serializable {

private final UIEventListener uiEventListener;

public CdiVaadinServiceDelegate(VaadinService vaadinService,
BeanManager beanManager) {
public CdiVaadinServiceDelegate(BeanManager beanManager) {
this.beanManager = beanManager;
uiEventListener = new UIEventListener(this);
}
Expand Down

0 comments on commit 8593b29

Please sign in to comment.