summaryrefslogtreecommitdiff
path: root/vala/valablock.vala
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2010-03-20 12:10:54 +0100
committerJürg Billeter <j@bitron.ch>2010-03-20 12:10:54 +0100
commit98602e201c4032bac943ede2149f6de62a1d8f4f (patch)
tree856f4f52ca59126178d052101008266a038676ae /vala/valablock.vala
parent898564ab223f016484bc792b7b32cfd6d7040f28 (diff)
downloadvala-98602e201c4032bac943ede2149f6de62a1d8f4f.tar.gz
Drop ReadOnly* collection classes
They are not very useful in the compiler as they are not immutable, which means that they do not allow iteration while modifying the underlying collection.
Diffstat (limited to 'vala/valablock.vala')
-rw-r--r--vala/valablock.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/vala/valablock.vala b/vala/valablock.vala
index 59eba4467..3a7eac7aa 100644
--- a/vala/valablock.vala
+++ b/vala/valablock.vala
@@ -108,7 +108,7 @@ public class Vala.Block : Symbol, Statement {
* @return variable declarator list
*/
public List<LocalVariable> get_local_variables () {
- return new ReadOnlyList<LocalVariable> (local_variables);
+ return local_variables;
}
public override void accept (CodeVisitor visitor) {