summaryrefslogtreecommitdiff
path: root/vala/valacomment.vala
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2020-02-20 11:20:53 +0100
committerRico Tzschichholz <ricotz@ubuntu.com>2020-03-24 14:19:28 +0100
commit0c1eaeabd1067480eba617fd249d8846afa11afb (patch)
treecdd13eae203a53b05dcff17c33cfb495c97a48e3 /vala/valacomment.vala
parent8058c6751afe65b355674f886f214d259cb72c03 (diff)
downloadvala-0c1eaeabd1067480eba617fd249d8846afa11afb.tar.gz
vala: Remove some public API from expressions and statements
Diffstat (limited to 'vala/valacomment.vala')
-rw-r--r--vala/valacomment.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/vala/valacomment.vala b/vala/valacomment.vala
index 0e48f897e..0d7859945 100644
--- a/vala/valacomment.vala
+++ b/vala/valacomment.vala
@@ -34,12 +34,12 @@ public class Vala.Comment {
/**
* The text describing the referenced source code.
*/
- public string content { set; get; }
+ public string content { get; private set; }
/**
* References the location in the source file where this code node has
* been written.
*/
- public SourceReference source_reference { get; set; }
+ public SourceReference source_reference { get; private set; }
}