Fixes up invariant property validation since we were only allowing one callback per alias, but we need to allow multiple

This commit is contained in:
Shannon
2018-08-13 11:25:55 +10:00
parent e41aad78b0
commit 9d5d516064
8 changed files with 102 additions and 89 deletions

View File

@@ -14,10 +14,7 @@ namespace Umbraco.Core.Events
_msgs.Add(msg);
}
public int Count
{
get { return _msgs.Count; }
}
public int Count => _msgs.Count;
public IEnumerable<EventMessage> GetAll()
{