mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
Eliminate warnings in .validation package
Issue: SPR-8062
This commit is contained in:
+3
-3
@@ -39,7 +39,7 @@ public interface PropertyEditorRegistry {
|
||||
* @param requiredType the type of the property
|
||||
* @param propertyEditor the editor to register
|
||||
*/
|
||||
void registerCustomEditor(Class requiredType, PropertyEditor propertyEditor);
|
||||
void registerCustomEditor(Class<?> requiredType, PropertyEditor propertyEditor);
|
||||
|
||||
/**
|
||||
* Register the given custom property editor for the given type and
|
||||
@@ -64,7 +64,7 @@ public interface PropertyEditorRegistry {
|
||||
* <code>null</code> if registering an editor for all properties of the given type
|
||||
* @param propertyEditor editor to register
|
||||
*/
|
||||
void registerCustomEditor(Class requiredType, String propertyPath, PropertyEditor propertyEditor);
|
||||
void registerCustomEditor(Class<?> requiredType, String propertyPath, PropertyEditor propertyEditor);
|
||||
|
||||
/**
|
||||
* Find a custom property editor for the given type and property.
|
||||
@@ -74,6 +74,6 @@ public interface PropertyEditorRegistry {
|
||||
* <code>null</code> if looking for an editor for all properties of the given type
|
||||
* @return the registered editor, or <code>null</code> if none
|
||||
*/
|
||||
PropertyEditor findCustomEditor(Class requiredType, String propertyPath);
|
||||
PropertyEditor findCustomEditor(Class<?> requiredType, String propertyPath);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user