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.50.4~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=639347a1bb187b92ca9643cfec8977b2fed5c6d9;p=thirdparty%2Fvala.git codewriter: Don't write trailing ";" after body of WithStatement --- diff --git a/vala/valacodewriter.vala b/vala/valacodewriter.vala index 628653bba..87469b288 100644 --- a/vala/valacodewriter.vala +++ b/vala/valacodewriter.vala @@ -1170,7 +1170,6 @@ public class Vala.CodeWriter : CodeVisitor { stmt.expression.accept (this); write_string (")"); stmt.body.accept (this); - write_string (";"); write_newline (); }