diff options
author | Rory& <root@rory.gay> | 2024-09-17 04:35:29 +0200 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-09-17 04:35:29 +0200 |
commit | 9efb2efc582e3d57154f40f519762a07b9d00501 (patch) | |
tree | f15e4296353c76c0bcb9481cc2da7a7b4e695c2d /LibMatrix | |
parent | Merge remote-tracking branch 'origin/dev/e2ee{canonical-json}' (diff) | |
download | LibMatrix-9efb2efc582e3d57154f40f519762a07b9d00501.tar.xz |
Arcanelibs changes
Diffstat (limited to 'LibMatrix')
-rw-r--r-- | LibMatrix/StateEvent.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LibMatrix/StateEvent.cs b/LibMatrix/StateEvent.cs index 81ee3fe..073d26d 100644 --- a/LibMatrix/StateEvent.cs +++ b/LibMatrix/StateEvent.cs @@ -13,7 +13,7 @@ using LibMatrix.Extensions; namespace LibMatrix; public class StateEvent { - public static FrozenSet<Type> KnownStateEventTypes { get; } = new ClassCollector<EventContent>().ResolveFromAllAccessibleAssemblies().ToFrozenSet(); + public static FrozenSet<Type> KnownStateEventTypes { get; } = ClassCollector<EventContent>.ResolveFromAllAccessibleAssemblies().ToFrozenSet(); public static FrozenDictionary<string, Type> KnownStateEventTypesByName { get; } = KnownStateEventTypes.Aggregate( new Dictionary<string, Type>(), |