Skip to content

Commit 49e6f30

Browse files
committed
Remove useless null parameter passed
1 parent 4368df2 commit 49e6f30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Extensions/Xtensive.Orm.BulkOperations/Internals/SetOperation.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.Linq;
44
using System.Linq.Expressions;
@@ -140,7 +140,7 @@ private void AddConstantValue(AddValueContext addContext)
140140
{
141141
SqlTableColumn column = SqlDml.TableColumn(addContext.Statement.Table, addContext.Field.Column.Name);
142142
SqlExpression value;
143-
object constant = FastExpression.Lambda(addContext.Lambda.Body, null).Compile().DynamicInvoke();
143+
object constant = FastExpression.Lambda(addContext.Lambda.Body).Compile().DynamicInvoke();
144144
if (constant==null)
145145
value = SqlDml.Null;
146146
else {

0 commit comments

Comments
 (0)