From fafb383e6696eb1e8fb88721edf7d4b0048c3440 Mon Sep 17 00:00:00 2001 From: liranz Date: Thu, 24 Apr 2014 22:12:10 +0300 Subject: [PATCH] Update astprinter.d Removed baraces for single if expression changed spaces to tabs --- astprinter.d | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/astprinter.d b/astprinter.d index c577de0..33c2165 100644 --- a/astprinter.d +++ b/astprinter.d @@ -592,9 +592,8 @@ class XMLPrinter : ASTVisitor { output.writeln(""); output.writeln(""); - if (gotoStatement.expression) { - visit(gotoStatement.expression); - } + if (gotoStatement.expression) + visit(gotoStatement.expression); output.writeln(""); output.writeln(""); }