<bean parent="modifyPopulatorList">
<property name="list" ref="extendedCartConverter"/>
<property name="add" ref="creditPlanOrderPopulator"/>
</bean>
doesn't add the creditPlanOrderPopulator to the extendedCartConverter anymore, but it adds populator to the list of populators
<bean parent="modifyPopulatorList">
<property name="list" ref="selectedContentCatalogImpexMacroParametersPopulators"/>
<property name="add" ref="supportedUiExperienceImpexMacroParameterPopulator"/>
</bean>
That's true for all the modifyPopulatorList lists on the project. Not only for one I gave as example. And what's more bizarre it used to work pretty well till we add the source dependency for one service. So this is not even changes in business logic. Just one small dependency import in java class broke down the whole feature from working.
Does anybody have any ideas how to fix that?