Skip to content

Commit 64114c8

Browse files
committed
Remove redundant spaces in SqlQueryRef.cs file
1 parent 024126f commit 64114c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Orm/Xtensive.Orm/Sql/Dml/SqlQueryRef.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ internal SqlQueryRef(ISqlQueryExpression query, string name)
7777
}
7878
}
7979

80-
if (queryExpression is SqlFreeTextTable freeTextTable ) {
80+
if (queryExpression is SqlFreeTextTable freeTextTable) {
8181
queryColumns.AddRange(
8282
freeTextTable.Columns.Select(originalColumn => SqlDml.TableColumn(this, originalColumn.Name)));
8383
}
8484

85-
if (queryExpression is SqlContainsTable containsTable ) {
85+
if (queryExpression is SqlContainsTable containsTable) {
8686
queryColumns.AddRange(
8787
containsTable.Columns.Select(originalColumn => SqlDml.TableColumn(this, originalColumn.Name)));
8888
}

0 commit comments

Comments
 (0)