Skip to content

Commit 6095435

Browse files
committed
use var instead of explicity type
1 parent fb4afc8 commit 6095435

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public SqlDeclareVariable Declare()
3838

3939
public override void ReplaceWith(SqlExpression expression)
4040
{
41-
SqlVariable replacingExpression = ArgumentValidator.EnsureArgumentIs<SqlVariable>(expression);
41+
var replacingExpression = ArgumentValidator.EnsureArgumentIs<SqlVariable>(expression);
4242
name = replacingExpression.Name;
4343
}
4444

0 commit comments

Comments
 (0)