Skip to content

Commit c0cf132

Browse files
committed
Code-style change
1 parent aacaad9 commit c0cf132

File tree

1 file changed

+2
-2
lines changed
  • Orm/Xtensive.Orm/Sql/Compiler/Internals/Nodes

1 file changed

+2
-2
lines changed

Orm/Xtensive.Orm/Sql/Compiler/Internals/Nodes/TextNode.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ internal class TextNode : Node
1414

1515
public readonly string Text;
1616

17-
internal override void AcceptVisitor(NodeVisitor visitor) => visitor.Visit(this);
18-
1917
public static TextNode Create(string text)
2018
{
2119
if (text.Length < 3) {
@@ -27,6 +25,8 @@ public static TextNode Create(string text)
2725
return new TextNode(text);
2826
}
2927

28+
internal override void AcceptVisitor(NodeVisitor visitor) => visitor.Visit(this);
29+
3030
// Constructor
3131

3232
private TextNode(string text)

0 commit comments

Comments
 (0)