Skip to content

Commit dd1081d

Browse files
authored
Fix code style
1 parent 7f74a96 commit dd1081d

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/NHibernate/Mapping/ByCode/Impl/CustomizersImpl/JoinCustomizer.cs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,16 +132,14 @@ protected override void RegisterComponentMapping<TComponent>(Expression<Func<TEn
132132
base.RegisterComponentMapping(property, mapping);
133133
}
134134

135-
protected override void RegisterDynamicComponentMapping<TComponent>(Expression<Func<TEntity, System.Collections.IDictionary>> property
136-
, Action<IDynamicComponentMapper<TComponent>> mapping)
135+
protected override void RegisterDynamicComponentMapping<TComponent>(Expression<Func<TEntity, System.Collections.IDictionary>> property, Action<IDynamicComponentMapper<TComponent>> mapping)
137136
{
138137
MemberInfo member = TypeExtensions.DecodeMemberAccessExpression(property);
139138
ExplicitDeclarationsHolder.AddAsPropertySplit(new SplitDefinition(typeof(TEntity), splitGroupId, member));
140139
base.RegisterDynamicComponentMapping(property, mapping);
141140
}
142141

143-
protected override void RegisterDynamicComponentMapping<TComponent>(Expression<Func<TEntity, IDictionary<string, object>>> property
144-
, Action<IDynamicComponentMapper<TComponent>> mapping)
142+
protected override void RegisterDynamicComponentMapping<TComponent>(Expression<Func<TEntity, IDictionary<string, object>>> property, Action<IDynamicComponentMapper<TComponent>> mapping)
145143
{
146144
MemberInfo member = TypeExtensions.DecodeMemberAccessExpression(property);
147145
ExplicitDeclarationsHolder.AddAsPropertySplit(new SplitDefinition(typeof(TEntity), splitGroupId, member));
@@ -169,4 +167,4 @@ protected override void RegisterIdBagMapping<TElement>(Expression<Func<TEntity,
169167
base.RegisterIdBagMapping(property, collectionMapping, mapping);
170168
}
171169
}
172-
}
170+
}

0 commit comments

Comments
 (0)