File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -34,17 +34,17 @@ public sealed partial class DurableTaskRegistry
3434 /// <summary>
3535 /// Gets the types of registered activities.
3636 /// </summary>
37- internal HashSet < Type > ActivityTypes { get ; } = [ ] ;
37+ internal HashSet < Type > ActivityTypes { get ; } = new HashSet < Type > ( ) ;
3838
3939 /// <summary>
4040 /// Gets the types of registered orchestrators.
4141 /// </summary>
42- internal HashSet < Type > OrchestratorTypes { get ; } = [ ] ;
42+ internal HashSet < Type > OrchestratorTypes { get ; } = new HashSet < Type > ( ) ;
4343
4444 /// <summary>
4545 /// Gets the types of registered entities.
4646 /// </summary>
47- internal HashSet < Type > EntityTypes { get ; } = [ ] ;
47+ internal HashSet < Type > EntityTypes { get ; } = new HashSet < Type > ( ) ;
4848
4949 /// <summary>
5050 /// Registers an activity factory.
You can’t perform that action at this time.
0 commit comments