You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a bean that implements Formatter that is supposed to also implement Converter as I need it to be considered for application property binding as well and I can simply forward the call to convert(…) to the parse(…) method of the converter.
Doing that causes the instance not to be registered as Formatter anymore as ApplicationConversionService.addBeans(…) uses an if-else cascade to forward the registration calls. Any particular reason it does not simply use a sequence of ifs?