Cleaned up bugs in DependencyMap and ReflectionUtils

This commit is contained in:
Christopher F
2016-07-20 18:04:18 -04:00
parent bbe51012cf
commit e266fa8b32
2 changed files with 12 additions and 7 deletions

View File

@@ -8,6 +8,11 @@ namespace Discord.Commands
{
private Dictionary<Type, object> map;
public DependencyMap()
{
map = new Dictionary<Type, object>();
}
public T Get<T>() where T : class
{
var t = typeof(T);