From 594359f77f6e8ba642a6d88b7e6ce2eb82623bd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Kr=C3=BCger?= Date: Mon, 9 Mar 2009 08:13:26 +0000 Subject: [PATCH] * 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 --- .../Project/Src/PrettyPrinter/VBNet/VBNetOutputFormatter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/VBNet/VBNetOutputFormatter.cs b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/VBNet/VBNetOutputFormatter.cs index 1fde6c26f5..1d183d0926 100644 --- a/src/Libraries/NRefactory/Project/Src/PrettyPrinter/VBNet/VBNetOutputFormatter.cs +++ b/src/Libraries/NRefactory/Project/Src/PrettyPrinter/VBNet/VBNetOutputFormatter.cs @@ -71,7 +71,7 @@ namespace ICSharpCode.NRefactory.PrettyPrinter { if (!LastCharacterIsWhiteSpace) Space(); - PrintText("_\r\n"); + PrintText("_" + Environment.NewLine); } } }