summaryrefslogtreecommitdiff
path: root/vala/valascope.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/valascope.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/valascope.vala')
-rw-r--r--vala/valascope.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/vala/valascope.vala b/vala/valascope.vala
index cfa2781e3..046546123 100644
--- a/vala/valascope.vala
+++ b/vala/valascope.vala
@@ -123,7 +123,7 @@ public class Vala.Scope {
}
public Map<string,Symbol> get_symbol_table () {
- return new ReadOnlyMap<string,Symbol> (symbol_table);
+ return symbol_table;
}
}