diff options
author | Jürg Billeter <j@bitron.ch> | 2009-10-12 20:15:09 +0200 |
---|---|---|
committer | Jürg Billeter <j@bitron.ch> | 2009-10-12 20:15:09 +0200 |
commit | 5c4bcf9aba99cbb7bd3fd0215750532733b221d1 (patch) | |
tree | 37f5587aa06c264cb0f9da0dd10d094a8cdceb10 /vala/valalambdaexpression.vala | |
parent | 04a8e745c78d3d2ccd84574d1a5f91481099cb3f (diff) | |
download | vala-5c4bcf9aba99cbb7bd3fd0215750532733b221d1.tar.gz |
Do not use Gee namespace to avoid conflict with libgee
Diffstat (limited to 'vala/valalambdaexpression.vala')
-rw-r--r-- | vala/valalambdaexpression.vala | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/vala/valalambdaexpression.vala b/vala/valalambdaexpression.vala index c9794c2ad..0f0bb2997 100644 --- a/vala/valalambdaexpression.vala +++ b/vala/valalambdaexpression.vala @@ -21,7 +21,6 @@ */ using GLib; -using Gee; /** * Represents a lambda expression in the source code. Lambda expressions are @@ -45,7 +44,7 @@ public class Vala.LambdaExpression : Expression { */ public Method method { get; set; } - private Gee.List<string> parameters = new ArrayList<string> (); + private List<string> parameters = new ArrayList<string> (); /** * Creates a new lambda expression. @@ -85,7 +84,7 @@ public class Vala.LambdaExpression : Expression { * * @return parameter list */ - public Gee.List<string> get_parameters () { + public List<string> get_parameters () { return new ReadOnlyList<string> (parameters); } |