Browse Source

Merge pull request #24287 from KangZhiDong/master

Closes gh-24287
pull/24295/head
Rossen Stoyanchev 6 years ago
parent
commit
92a28392db
  1. 2
      spring-beans/src/main/java/org/springframework/beans/factory/parsing/ParseState.java
  2. 6
      spring-beans/src/main/java/org/springframework/beans/factory/parsing/ReaderContext.java

2
spring-beans/src/main/java/org/springframework/beans/factory/parsing/ParseState.java

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
/*
* Copyright 2002-2018 the original author or authors.
* Copyright 2002-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

6
spring-beans/src/main/java/org/springframework/beans/factory/parsing/ReaderContext.java

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -152,14 +152,14 @@ public class ReaderContext { @@ -152,14 +152,14 @@ public class ReaderContext {
// Explicit parse events
/**
* Fire an defaults-registered event.
* Fire a defaults-registered event.
*/
public void fireDefaultsRegistered(DefaultsDefinition defaultsDefinition) {
this.eventListener.defaultsRegistered(defaultsDefinition);
}
/**
* Fire an component-registered event.
* Fire a component-registered event.
*/
public void fireComponentRegistered(ComponentDefinition componentDefinition) {
this.eventListener.componentRegistered(componentDefinition);

Loading…
Cancel
Save