Remove deprecated RegistrationOptions alias

This commit is contained in:
Mike Bierlee 2015-12-28 22:43:53 +01:00
parent 4b1bc5077a
commit e2d86bae0d
2 changed files with 1 additions and 5 deletions

View file

@ -6,6 +6,7 @@ should not be affected by this change.
* ADD application contexts. You can register dependencies within an application context which allow you to fine-tune the creation of dependency instances.
* CHANGE all public poodinis imports to private. This should not affect you if you use the package import "poodinis" instead of individual modules.
* REMOVE deprecated ADD_CONCRETE_TYPE_REGISTRATION registration option.
* REMOVE deprecated RegistrationOptions alias.
**Version 5.0.0**
* DEPRECATE ADD_CONCRETE_TYPE_REGISTRATION registration option. It basically does nothing anymore. See next point.

View file

@ -54,11 +54,6 @@ public enum RegistrationOption {
DO_NOT_ADD_CONCRETE_TYPE_REGISTRATION
}
/**
* Deprecated: Use enum RegistrationOption instead
*/
alias RegistrationOptions = RegistrationOption;
/**
* The dependency container maintains all dependencies registered with it.
*