Skip to content

Commit 10ad53a

Browse files
committed
Fix FailureAnalyzer package tangle
Move `IncompatibleConfigurationFailureAnalyzer` to fix a package tangle. Closes gh-23385
1 parent 6509310 commit 10ad53a

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.boot.diagnostics.analyzer;
17+
package org.springframework.boot.context.properties;
1818

1919
import java.util.stream.Collectors;
2020

21-
import org.springframework.boot.context.properties.IncompatibleConfigurationException;
2221
import org.springframework.boot.diagnostics.AbstractFailureAnalyzer;
2322
import org.springframework.boot.diagnostics.FailureAnalysis;
2423

spring-boot-project/spring-boot/src/main/resources/META-INF/spring.factories

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ org.springframework.boot.reactor.DebugAgentEnvironmentPostProcessor
5252

5353
# Failure Analyzers
5454
org.springframework.boot.diagnostics.FailureAnalyzer=\
55+
org.springframework.boot.context.properties.IncompatibleConfigurationFailureAnalyzer,\
5556
org.springframework.boot.context.properties.NotConstructorBoundInjectionFailureAnalyzer,\
5657
org.springframework.boot.diagnostics.analyzer.BeanCurrentlyInCreationFailureAnalyzer,\
5758
org.springframework.boot.diagnostics.analyzer.BeanDefinitionOverrideFailureAnalyzer,\
@@ -64,7 +65,6 @@ org.springframework.boot.diagnostics.analyzer.NoSuchMethodFailureAnalyzer,\
6465
org.springframework.boot.diagnostics.analyzer.NoUniqueBeanDefinitionFailureAnalyzer,\
6566
org.springframework.boot.diagnostics.analyzer.PortInUseFailureAnalyzer,\
6667
org.springframework.boot.diagnostics.analyzer.ValidationExceptionFailureAnalyzer,\
67-
org.springframework.boot.diagnostics.analyzer.IncompatibleConfigurationFailureAnalyzer,\
6868
org.springframework.boot.diagnostics.analyzer.InvalidConfigurationPropertyNameFailureAnalyzer,\
6969
org.springframework.boot.diagnostics.analyzer.InvalidConfigurationPropertyValueFailureAnalyzer,\
7070
org.springframework.boot.diagnostics.analyzer.PatternParseFailureAnalyzer,\
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.boot.diagnostics.analyzer;
17+
package org.springframework.boot.context.properties;
1818

1919
import org.junit.jupiter.api.Test;
2020

21-
import org.springframework.boot.context.properties.IncompatibleConfigurationException;
2221
import org.springframework.boot.diagnostics.FailureAnalysis;
2322

2423
import static org.assertj.core.api.Assertions.assertThat;

0 commit comments

Comments
 (0)