Browse Source

* Src/PrettyPrinter/VBNet/VBNetOutputFormatter.cs: Use

Environment.Newline instead of hardcoded eol terminator.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@3840 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Mike Krüger 17 years ago
parent
commit
594359f77f
  1. 2
      src/Libraries/NRefactory/Project/Src/PrettyPrinter/VBNet/VBNetOutputFormatter.cs

2
src/Libraries/NRefactory/Project/Src/PrettyPrinter/VBNet/VBNetOutputFormatter.cs

@ -71,7 +71,7 @@ namespace ICSharpCode.NRefactory.PrettyPrinter @@ -71,7 +71,7 @@ namespace ICSharpCode.NRefactory.PrettyPrinter
{
if (!LastCharacterIsWhiteSpace)
Space();
PrintText("_\r\n");
PrintText("_" + Environment.NewLine);
}
}
}

Loading…
Cancel
Save