]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Remove unused variable in parser
authorJürg Billeter <j@bitron.ch>
Sat, 15 Jan 2011 11:30:58 +0000 (12:30 +0100)
committerJürg Billeter <j@bitron.ch>
Sat, 15 Jan 2011 11:30:58 +0000 (12:30 +0100)
vala/valaparser.vala

index 4b638f9ca035bf5b2691fbe80e51dc10fa410f51..926654ebd3183334a01e2aafa21242439aac5055 100644 (file)
@@ -952,7 +952,6 @@ public class Vala.Parser : CodeVisitor {
        }
 
        Expression parse_yield_expression () throws ParseError {
-               var begin = get_location ();
                expect (TokenType.YIELD);
                var expr = parse_expression ();