From e2d86bae0d03d8174362286d92f9e941cff4e9bf Mon Sep 17 00:00:00 2001 From: Mike Bierlee Date: Mon, 28 Dec 2015 22:43:53 +0100 Subject: [PATCH] Remove deprecated RegistrationOptions alias --- CHANGES.md | 1 + source/poodinis/container.d | 5 ----- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 2194739..1c992cf 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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. diff --git a/source/poodinis/container.d b/source/poodinis/container.d index 8d050d3..f947e87 100644 --- a/source/poodinis/container.d +++ b/source/poodinis/container.d @@ -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. *