From: Rico Tzschichholz Date: Tue, 16 Feb 2021 09:33:06 +0000 (+0100) Subject: codewriter: Don't write trailing ";" after body of WithStatement X-Git-Tag: 0.51.2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=296d44dd435a1b4f023ea3909589e40568d5b1c7;p=thirdparty%2Fvala.git codewriter: Don't write trailing ";" after body of WithStatement --- diff --git a/vala/valacodewriter.vala b/vala/valacodewriter.vala index 8c2df4db6..2b9e19030 100644 --- a/vala/valacodewriter.vala +++ b/vala/valacodewriter.vala @@ -1172,7 +1172,6 @@ public class Vala.CodeWriter : CodeVisitor { stmt.expression.accept (this); write_string (")"); stmt.body.accept (this); - write_string (";"); write_newline (); }