Polish
This commit is contained in:
parent
6270f5008d
commit
cb5ca7997b
|
@ -22,6 +22,6 @@ package org.springframework.boot.convert;
|
||||||
*
|
*
|
||||||
* @author Madhura Bhave
|
* @author Madhura Bhave
|
||||||
*/
|
*/
|
||||||
final class LenientBooleanToEnumConverterFactory extends LenientToEnumConverterFactory<Boolean> {
|
final class LenientBooleanToEnumConverterFactory extends LenientObjectToEnumConverterFactory<Boolean> {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,7 +36,7 @@ import org.springframework.util.MultiValueMap;
|
||||||
* @author Madhura Bhave
|
* @author Madhura Bhave
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("rawtypes")
|
@SuppressWarnings("rawtypes")
|
||||||
abstract class LenientToEnumConverterFactory<T> implements ConverterFactory<T, Enum<?>> {
|
abstract class LenientObjectToEnumConverterFactory<T> implements ConverterFactory<T, Enum<?>> {
|
||||||
|
|
||||||
private static Map<String, List<String>> ALIASES;
|
private static Map<String, List<String>> ALIASES;
|
||||||
|
|
|
@ -28,6 +28,6 @@ package org.springframework.boot.convert;
|
||||||
*
|
*
|
||||||
* @author Phillip Webb
|
* @author Phillip Webb
|
||||||
*/
|
*/
|
||||||
final class LenientStringToEnumConverterFactory extends LenientToEnumConverterFactory<String> {
|
final class LenientStringToEnumConverterFactory extends LenientObjectToEnumConverterFactory<String> {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue