Make EventPublishingRunListener package private

Closes gh-32299
This commit is contained in:
Phillip Webb 2022-09-12 18:26:27 -07:00
parent 20b91c5ae2
commit 6955ed9dcf
1 changed files with 2 additions and 3 deletions

View File

@ -49,9 +49,8 @@ import org.springframework.util.ErrorHandler;
* @author Artsiom Yudovin
* @author Brian Clozel
* @author Chris Bono
* @since 1.0.0
*/
public class EventPublishingRunListener implements SpringApplicationRunListener, Ordered {
class EventPublishingRunListener implements SpringApplicationRunListener, Ordered {
private final SpringApplication application;
@ -59,7 +58,7 @@ public class EventPublishingRunListener implements SpringApplicationRunListener,
private final SimpleApplicationEventMulticaster initialMulticaster;
public EventPublishingRunListener(SpringApplication application, String[] args) {
EventPublishingRunListener(SpringApplication application, String[] args) {
this.application = application;
this.args = args;
this.initialMulticaster = new SimpleApplicationEventMulticaster();