This commit is contained in:
Phillip Webb 2019-08-22 15:17:34 -07:00
parent 6270f5008d
commit cb5ca7997b
3 changed files with 3 additions and 3 deletions

View File

@ -22,6 +22,6 @@ package org.springframework.boot.convert;
*
* @author Madhura Bhave
*/
final class LenientBooleanToEnumConverterFactory extends LenientToEnumConverterFactory<Boolean> {
final class LenientBooleanToEnumConverterFactory extends LenientObjectToEnumConverterFactory<Boolean> {
}

View File

@ -36,7 +36,7 @@ import org.springframework.util.MultiValueMap;
* @author Madhura Bhave
*/
@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;

View File

@ -28,6 +28,6 @@ package org.springframework.boot.convert;
*
* @author Phillip Webb
*/
final class LenientStringToEnumConverterFactory extends LenientToEnumConverterFactory<String> {
final class LenientStringToEnumConverterFactory extends LenientObjectToEnumConverterFactory<String> {
}