-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed as not planned
Labels
Description
Steps to reproduce
- with version 5.12.2
DefaultArgumentConverter.INSTANCE
was not marked as deprecated - with version 5.13.1
DefaultArgumentConverter.INSTANCE
not exist any more
Context
public class JunitNullableConverter implements ArgumentConverter {
@Override
public Object convert(Object source, ParameterContext pc) throws ArgumentConversionException {
...
return DefaultArgumentConverter.INSTANCE.convert(source, pc);
}