Skip to content

Commit 1482371

Browse files
committed
format
1 parent 4b52aa3 commit 1482371

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/NHibernate/Loader/Loader.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ public sealed class QueryCacheInfo
8282
/// <summary>
8383
/// Caches subclass entity aliases for given persister index in <see cref="EntityPersisters"/> and subclass entity name
8484
/// </summary>
85-
private readonly Lazy<ConcurrentDictionary<Tuple<int, string>, string[][]>> _subclassEntityAliasesMap = new(()=>new ConcurrentDictionary<Tuple<int, string>, string[][]>());
85+
private readonly Lazy<ConcurrentDictionary<Tuple<int, string>, string[][]>> _subclassEntityAliasesMap =
86+
new(() => new ConcurrentDictionary<Tuple<int, string>, string[][]>());
8687

8788
protected Loader(ISessionFactoryImplementor factory)
8889
{

0 commit comments

Comments
 (0)