Skip to content

Commit

Permalink
#29479 Added default constructor for CDI
Browse files Browse the repository at this point in the history
  • Loading branch information
jgambarios committed Sep 27, 2024
1 parent cb368bb commit ada07ff
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@
@ApplicationScoped
public class EventProducer {

private final BeanManager beanManager;
private BeanManager beanManager;

public EventProducer() {
// Default constructor for CDI
}

/**
* Constructs a new EventProducer.
Expand Down

0 comments on commit ada07ff

Please sign in to comment.