Skip to content

Commit f4ca34e

Browse files
committed
var instead of explicity type
1 parent 52ce8f8 commit f4ca34e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orm/Xtensive.Orm/Sql/Dml/Expressions/SqlUserColumn.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public SqlExpression Expression
2323

2424
public override void ReplaceWith(SqlExpression expression)
2525
{
26-
SqlUserColumn replacingExpression = ArgumentValidator.EnsureArgumentIs<SqlUserColumn>(expression);
26+
var replacingExpression = ArgumentValidator.EnsureArgumentIs<SqlUserColumn>(expression);
2727
this.expression = replacingExpression.Expression;
2828
}
2929

0 commit comments

Comments
 (0)