-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Avoid duplicate ltrim function on not complied mode. #9189
Conversation
I think you brought the work from #9140 in here. As that's not related to the trimming. |
@sivajik34 I restarted the travis build and it passed, the failure was not related to your PR. |
@Vinai please take care. |
Case 1: not complied
1.Magento\Framework\ObjectManager\ObjectManager -> create method will ltrim $type.
2.Magento\Framework\ObjectManager\Config\Config -> getPreference method again ltrim $type.
so in order to avoid duplicate ltrim calls i removed from one file,added to necessary file.