Skip to content

Commit 1d20c73

Browse files
committed
Make nested classes in JsonTestersAutoConfiguration package private
Closes gh-15444
1 parent 8ac6944 commit 1d20c73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/json/JsonTestersAutoConfiguration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public FactoryBean<JsonbTester<?>> jsonbTesterFactoryBean(Jsonb jsonb) {
118118
/**
119119
* {@link FactoryBean} used to create JSON Tester instances.
120120
*/
121-
private static class JsonTesterFactoryBean<T, M> implements FactoryBean<T> {
121+
static class JsonTesterFactoryBean<T, M> implements FactoryBean<T> {
122122

123123
private final Class<?> objectType;
124124

@@ -166,7 +166,7 @@ public Class<?> getObjectType() {
166166
/**
167167
* {@link BeanPostProcessor} used to initialize JSON testers.
168168
*/
169-
private static class JsonMarshalTestersBeanPostProcessor
169+
static class JsonMarshalTestersBeanPostProcessor
170170
extends InstantiationAwareBeanPostProcessorAdapter {
171171

172172
@Override

0 commit comments

Comments
 (0)