Make nested classes in JsonTestersAutoConfiguration package private

Closes gh-15444
This commit is contained in:
Madhura Bhave 2019-04-15 16:02:00 -07:00
parent 8ac69442f1
commit 1d20c73d22
1 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ public class JsonTestersAutoConfiguration {
/**
* {@link FactoryBean} used to create JSON Tester instances.
*/
private static class JsonTesterFactoryBean<T, M> implements FactoryBean<T> {
static class JsonTesterFactoryBean<T, M> implements FactoryBean<T> {
private final Class<?> objectType;
@ -166,7 +166,7 @@ public class JsonTestersAutoConfiguration {
/**
* {@link BeanPostProcessor} used to initialize JSON testers.
*/
private static class JsonMarshalTestersBeanPostProcessor
static class JsonMarshalTestersBeanPostProcessor
extends InstantiationAwareBeanPostProcessorAdapter {
@Override