-
Notifications
You must be signed in to change notification settings - Fork 455
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
Obsolete methods that can be removed safely #377
Conversation
@@ -65,26 +65,6 @@ container.Register( | |||
); | |||
``` | |||
|
|||
### What does ActAs do? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you forget to remove ActAs
from ComponentRegistration
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Must have accidentally omitted that commit when I squished everything.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All fixed
Looks good, just a comment about |
This PR mainly targets: - ActAs - Parameters - ServiceOverrides - Properties - Most methods in DefaultKernel_ObsoleteAPI - Most methods in WindsorContainer_ObsoleteAPI Obsolete methods that can be removed safely: - Removed obsolete Resolve methods from IKernel/DefaultKernel && IWindsorContainer/WindsorContainer - Removed the obsolete AddComponent methods from IKernel/DefaultKernel - Removed the obsolete indexer from IKernel/DefaultKernel && IWindsorContainer/WindsorContainer - Removed the obsolete Properties methods from Component Registration - Removed the obsolete ServiceOverrides methods from Component Registration - Removed the obsolete Parameter method from Component Registration - Removed the obsolete ActAs method from Component Registrations and updated documentation Obsolete methods that cannot be removed safely: - IKernel/DefaultKernel AddFacility(String key, IFacility facility) - IWindsorContainer/WindsorContainer AddFacility(String key, IFacility facility) Still need to update CHANGELOG.md but will wait to avoid merge conflict.
All good. |
Thanks. I will come back on the other PR tomorrow night. |
This addresses obsolescence from issue #338
This PR mainly targets:
Obsolete methods that can be removed safely:
Obsolete methods that cannot be removed safely:
Still need to update CHANGELOG.md but will wait to avoid merge conflict.