summaryrefslogtreecommitdiff
path: root/vala/valalockstatement.vala
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2008-08-14 21:22:53 +0000
committerJürg Billeter <juergbi@src.gnome.org>2008-08-14 21:22:53 +0000
commit8621de12c043a7a7d959dbca9b70a5fa02c34781 (patch)
tree2f656d4d065c78104a0af9e4d93ece1b8ccb7463 /vala/valalockstatement.vala
parent2166f7c312de0cd0e0f474cfff44c3293fea3098 (diff)
downloadvala-8621de12c043a7a7d959dbca9b70a5fa02c34781.tar.gz
Don't derive from GObject in libvala where not necessary to improve
2008-08-14 Jürg Billeter <j@bitron.ch> Don't derive from GObject in libvala where not necessary to improve compilation performance svn path=/trunk/; revision=1757
Diffstat (limited to 'vala/valalockstatement.vala')
-rw-r--r--vala/valalockstatement.vala4
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;