Index: Core/Common/src/Core.Common.Utils/Aop/EntityAttribute.cs =================================================================== diff -u -rf373ad013247119489a8056059a612ea68b31123 -r53e3425d6199f9277196c5178fea71f8329b084c --- Core/Common/src/Core.Common.Utils/Aop/EntityAttribute.cs (.../EntityAttribute.cs) (revision f373ad013247119489a8056059a612ea68b31123) +++ Core/Common/src/Core.Common.Utils/Aop/EntityAttribute.cs (.../EntityAttribute.cs) (revision 53e3425d6199f9277196c5178fea71f8329b084c) @@ -7,7 +7,6 @@ using System.Runtime.CompilerServices; using Core.Common.Utils.Aop.Markers; using Core.Common.Utils.Collections; -using Core.Common.Utils.Collections.Generic; using PostSharp.Aspects; using PostSharp.Aspects.Advices; using PostSharp.Extensibility; @@ -421,12 +420,6 @@ field.Name == string.Format("<{0}>k__BackingField", p.Name)); } - private static bool IsEventedListAggregation(FieldInfo fieldInfo) - { - return fieldInfo.FieldType.IsGenericType && - fieldInfo.FieldType.GetGenericTypeDefinition() == typeof(IEventedList<>); - } - private IEnumerable GetFieldsToSubscribeTo(Type type) { return GetApplicableFields(type).Select(i => i.FieldInfo);