From c1583ff7931b3c1c386da7bcf96be9bc187dc081 Mon Sep 17 00:00:00 2001 From: Alex Newman Date: Wed, 30 Dec 2015 23:42:29 -0800 Subject: Fixed constructor with custom white space text --- ICSharpCode.NRefactory.CSharp/Ast/GeneralScope/WhitespaceNode.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ICSharpCode.NRefactory.CSharp/Ast/GeneralScope/WhitespaceNode.cs b/ICSharpCode.NRefactory.CSharp/Ast/GeneralScope/WhitespaceNode.cs index c7e37f70..a03588aa 100644 --- a/ICSharpCode.NRefactory.CSharp/Ast/GeneralScope/WhitespaceNode.cs +++ b/ICSharpCode.NRefactory.CSharp/Ast/GeneralScope/WhitespaceNode.cs @@ -62,7 +62,7 @@ namespace ICSharpCode.NRefactory.CSharp public WhitespaceNode(string whiteSpaceText, TextLocation startLocation) { - this.WhiteSpaceText = WhiteSpaceText; + this.WhiteSpaceText = whiteSpaceText; this.startLocation = startLocation; } -- cgit v1.2.3