Browse Source

fix indentation in Accessor blocks

newNRvisualizers
Siegfried Pammer 14 years ago
parent
commit
d523549f6d
  1. 4
      ICSharpCode.NRefactory.VB/OutputVisitor/OutputVisitor.cs

4
ICSharpCode.NRefactory.VB/OutputVisitor/OutputVisitor.cs

@ -1283,9 +1283,9 @@ namespace ICSharpCode.NRefactory.VB
if (accessor.Parameters.Any()) if (accessor.Parameters.Any())
WriteCommaSeparatedListInParenthesis(accessor.Parameters, false); WriteCommaSeparatedListInParenthesis(accessor.Parameters, false);
NewLine(); NewLine();
Indent();
WriteBlock(accessor.Body); WriteBlock(accessor.Body);
Unindent();
WriteKeyword("End"); WriteKeyword("End");
if (accessor.Role == PropertyDeclaration.GetterRole) { if (accessor.Role == PropertyDeclaration.GetterRole) {

Loading…
Cancel
Save