Browse Source

[Formatting] Fixed override.

newNRvisualizers
Mike Krüger 14 years ago
parent
commit
6ba62c6740
  1. 2
      ICSharpCode.NRefactory.CSharp/Formatter/AstFormattingVisitor.cs

2
ICSharpCode.NRefactory.CSharp/Formatter/AstFormattingVisitor.cs

@ -117,7 +117,7 @@ namespace ICSharpCode.NRefactory.CSharp @@ -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)

Loading…
Cancel
Save