From bc4ca210fe22eecd3c19c9c0feafa8c75b089e01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Kr=C3=BCger?= Date: Fri, 28 Oct 2011 11:31:43 +0200 Subject: [PATCH] * NRefactory.sln: * CSharpCompletionEngine.cs: Fixed unit tests. --- .../Completion/CSharpCompletionEngine.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ICSharpCode.NRefactory.CSharp/Completion/CSharpCompletionEngine.cs b/ICSharpCode.NRefactory.CSharp/Completion/CSharpCompletionEngine.cs index 69548ed5bb..805e241a03 100644 --- a/ICSharpCode.NRefactory.CSharp/Completion/CSharpCompletionEngine.cs +++ b/ICSharpCode.NRefactory.CSharp/Completion/CSharpCompletionEngine.cs @@ -1568,9 +1568,9 @@ namespace ICSharpCode.NRefactory.CSharp.Completion expr = baseUnit.GetNodeAt (location.Line, location.Column - 1); } - // try statement + // try statement if (expr == null) { - expr = tmpUnit.GetNodeAt (location.Line, location.Column - 1); + expr = tmpUnit.GetNodeAt (location.Line, location.Column - 1); } if (expr == null)