Skip to content

Commit 4ee6a7f

Browse files
committed
whitespaces
1 parent af8212e commit 4ee6a7f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/NHibernate/Impl/ExpressionProcessor.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -283,9 +283,7 @@ public static object FindValue(Expression expression)
283283

284284
var toType = unaryExpression.Type;
285285
var fromType = unaryExpression.Operand.Type;
286-
if (toType == typeof(object)
287-
|| toType == fromType
288-
|| Nullable.GetUnderlyingType(toType) == fromType)
286+
if (toType == typeof(object) || toType == fromType || Nullable.GetUnderlyingType(toType) == fromType)
289287
return FindValue(unaryExpression.Operand);
290288

291289
if (toType == Nullable.GetUnderlyingType(fromType))

0 commit comments

Comments
 (0)