diff options
author | Jürg Billeter <j@bitron.ch> | 2010-03-20 12:10:54 +0100 |
---|---|---|
committer | Jürg Billeter <j@bitron.ch> | 2010-03-20 12:10:54 +0100 |
commit | 98602e201c4032bac943ede2149f6de62a1d8f4f (patch) | |
tree | 856f4f52ca59126178d052101008266a038676ae /vala/valaarraycreationexpression.vala | |
parent | 898564ab223f016484bc792b7b32cfd6d7040f28 (diff) | |
download | vala-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/valaarraycreationexpression.vala')
-rw-r--r-- | vala/valaarraycreationexpression.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vala/valaarraycreationexpression.vala b/vala/valaarraycreationexpression.vala index c2cb9af9a..80f4367cb 100644 --- a/vala/valaarraycreationexpression.vala +++ b/vala/valaarraycreationexpression.vala @@ -79,7 +79,7 @@ public class Vala.ArrayCreationExpression : Expression { * Get the sizes for all dimensions ascending from left to right. */ public List<Expression> get_sizes () { - return new ReadOnlyList<Expression> (sizes); + return sizes; } public ArrayCreationExpression (DataType element_type, int rank, InitializerList? initializer_list, SourceReference source_reference) { |