style: use explicit type

This commit is contained in:
Paul Pacheco 2019-04-06 08:14:21 -05:00
parent 02bf5a5cf6
commit 12aa61a00d

View File

@ -107,7 +107,7 @@ public static void ProcessEvents(TypeDefinition td, List<EventDefinition> events
// find events // find events
foreach (EventDefinition ed in td.Events) foreach (EventDefinition ed in td.Events)
{ {
foreach (var ca in ed.CustomAttributes) foreach (CustomAttribute ca in ed.CustomAttributes)
{ {
if (ca.AttributeType.FullName == Weaver.SyncEventType.FullName) if (ca.AttributeType.FullName == Weaver.SyncEventType.FullName)
{ {