summaryrefslogtreecommitdiff
path: root/vala/valathrowstatement.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/valathrowstatement.vala
parent8058c6751afe65b355674f886f214d259cb72c03 (diff)
downloadvala-0c1eaeabd1067480eba617fd249d8846afa11afb.tar.gz
vala: Remove some public API from expressions and statements
Diffstat (limited to 'vala/valathrowstatement.vala')
-rw-r--r--vala/valathrowstatement.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/vala/valathrowstatement.vala b/vala/valathrowstatement.vala
index 4ba347a9b..ae73dcb75 100644
--- a/vala/valathrowstatement.vala
+++ b/vala/valathrowstatement.vala
@@ -32,7 +32,7 @@ public class Vala.ThrowStatement : CodeNode, Statement {
get {
return _error_expression;
}
- set {
+ private set {
_error_expression = value;
if (_error_expression != null) {
_error_expression.parent_node = this;