diff options
Diffstat (limited to 'vala/valalockstatement.vala')
-rw-r--r-- | vala/valalockstatement.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vala/valalockstatement.vala b/vala/valalockstatement.vala index 9ab2cfc4d..c20763168 100644 --- a/vala/valalockstatement.vala +++ b/vala/valalockstatement.vala @@ -29,12 +29,12 @@ public class Vala.LockStatement : CodeNode, Statement { /** * Expression representing the resource to be locked. */ - public Expression resource { get; set construct; } + public Expression resource { get; set; } /** * The statement during its execution the resource is locked. */ - public Block body { get; set construct; } + public Block body { get; set; } public LockStatement (Expression resource, Block body, SourceReference? source_reference = null) { this.body = body; |