From 14f9577a815bab03170df05fad97280eb5c0442d Mon Sep 17 00:00:00 2001 From: MikeFH Date: Mon, 15 Jan 2018 22:17:41 +0100 Subject: [PATCH] Fix lines starting with spaces --- ICSharpCode.Decompiler.Tests/TestCases/Pretty/AsyncMain.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ICSharpCode.Decompiler.Tests/TestCases/Pretty/AsyncMain.cs b/ICSharpCode.Decompiler.Tests/TestCases/Pretty/AsyncMain.cs index 0722cbaf6..6d7f03bf6 100644 --- a/ICSharpCode.Decompiler.Tests/TestCases/Pretty/AsyncMain.cs +++ b/ICSharpCode.Decompiler.Tests/TestCases/Pretty/AsyncMain.cs @@ -4,11 +4,11 @@ using System.Threading.Tasks; namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty { public class AsyncMain - { + { public static async Task Main(string[] args) { await Task.Delay(1000); Console.WriteLine("Hello Wolrd!"); } - } + } }