# HG changeset patch # User Steven Robbins # Date 1268683992 0 # Node ID 0a353b3b9c0df6edb0daca94f65fd0ee350971f7 # Parent ca8d4d67dddba60b708ec7dc35504fd31a2bdb1d Removed some temporary testing code diff -r ca8d4d67dddba60b708ec7dc35504fd31a2bdb1d -r 0a353b3b9c0df6edb0daca94f65fd0ee350971f7 TinyIoC.sln --- a/TinyIoC.sln Mon Mar 15 16:37:10 2010 +0000 +++ b/TinyIoC.sln Mon Mar 15 20:13:12 2010 +0000 @@ -6,7 +6,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{3549B35C-E6A0-4007-8BBD-C82396AA28A1}" ProjectSection(SolutionItems) = preProject LocalTestRun.testrunconfig = LocalTestRun.testrunconfig - TinyIoC.vsmdi = TinyIoC.vsmdi + tinyioc.vsmdi = tinyioc.vsmdi EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TinyIoC", "TinyIoC\TinyIoC.csproj", "{72FF4023-DEDF-40D2-8E54-1BB3E9C38C5C}" diff -r ca8d4d67dddba60b708ec7dc35504fd31a2bdb1d -r 0a353b3b9c0df6edb0daca94f65fd0ee350971f7 TinyIoC/TinyIoC.cs --- a/TinyIoC/TinyIoC.cs Mon Mar 15 16:37:10 2010 +0000 +++ b/TinyIoC/TinyIoC.cs Mon Mar 15 20:13:12 2010 +0000 @@ -1418,8 +1418,6 @@ var types = assemblies.SelectMany(a => a.GetTypes()).Where(t => !IsIgnoredType(t)).ToList(); - var sortedTypes = types.OrderBy(o => o.Name); - var concreteTypes = from type in types where (type.IsClass == true) && (type.IsAbstract == false) && (type != this.GetType() && (type.DeclaringType != this.GetType()) && (!type.IsGenericTypeDefinition)) select type;