Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/NRefactory.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Newman <purenewman@gmail.com>2015-12-31 10:42:29 +0300
committerAlex Newman <purenewman@gmail.com>2015-12-31 10:42:29 +0300
commitc1583ff7931b3c1c386da7bcf96be9bc187dc081 (patch)
treeadeceae4d5fc96fc1170d9567f7bee91628842da
parenta2b55de351be2119b6f0c3a17c36b5b9adbd7c59 (diff)
Fixed constructor with custom white space text
-rw-r--r--ICSharpCode.NRefactory.CSharp/Ast/GeneralScope/WhitespaceNode.cs2
1 files changed, 1 insertions, 1 deletions
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;
}