From 6ba62c6740a06aa2719a01d34f96164f7059c438 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Kr=C3=BCger?= Date: Fri, 22 Jun 2012 14:59:36 +0200 Subject: [PATCH] [Formatting] Fixed override. --- ICSharpCode.NRefactory.CSharp/Formatter/AstFormattingVisitor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ICSharpCode.NRefactory.CSharp/Formatter/AstFormattingVisitor.cs b/ICSharpCode.NRefactory.CSharp/Formatter/AstFormattingVisitor.cs index f79e1f30b5..14f23360b3 100644 --- a/ICSharpCode.NRefactory.CSharp/Formatter/AstFormattingVisitor.cs +++ b/ICSharpCode.NRefactory.CSharp/Formatter/AstFormattingVisitor.cs @@ -117,7 +117,7 @@ namespace ICSharpCode.NRefactory.CSharp curIndent = new Indent(this.options); } - protected virtual void VisitChildren (AstNode node) + protected override void VisitChildren (AstNode node) { if (!FormattingRegion.IsEmpty) { if (node.EndLocation < FormattingRegion.Begin || node.StartLocation > FormattingRegion.End)