From: Jürg Billeter Date: Fri, 28 Nov 2008 17:18:08 +0000 (+0000) Subject: Remove unused fields X-Git-Tag: VALA_0_5_2~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad9cf2c9fecce904b1da92a249c2fa14f61c96cd;p=thirdparty%2Fvala.git Remove unused fields 2008-11-28 Jürg Billeter * vala/valasemanticanalyzer.vala: * gobject/valaccodebasemodule.vala: Remove unused fields svn path=/trunk/; revision=2073 --- diff --git a/ChangeLog b/ChangeLog index 5a1660993..1888c25b2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-11-28 Jürg Billeter + + * vala/valasemanticanalyzer.vala: + * gobject/valaccodebasemodule.vala: + + Remove unused fields + 2008-11-28 Jürg Billeter * vala/valabinaryexpression.vala: diff --git a/gobject/valaccodebasemodule.vala b/gobject/valaccodebasemodule.vala index 0afac8282..2d7fc1ac7 100644 --- a/gobject/valaccodebasemodule.vala +++ b/gobject/valaccodebasemodule.vala @@ -113,7 +113,6 @@ public class Vala.CCodeBaseModule : CCodeModule { public DataType gquark_type; public Struct mutex_type; public TypeSymbol type_module_type; - public Interface collection_type; public Interface list_type; public Interface map_type; public TypeSymbol dbus_object_type; @@ -551,7 +550,6 @@ public class Vala.CCodeBaseModule : CCodeModule { var gee_ns = root_symbol.scope.lookup ("Gee"); if (gee_ns != null) { - collection_type = (Interface) gee_ns.scope.lookup ("Collection"); list_type = (Interface) gee_ns.scope.lookup ("List"); map_type = (Interface) gee_ns.scope.lookup ("Map"); } diff --git a/vala/valasemanticanalyzer.vala b/vala/valasemanticanalyzer.vala index 937e84682..259b7d712 100644 --- a/vala/valasemanticanalyzer.vala +++ b/vala/valasemanticanalyzer.vala @@ -59,7 +59,6 @@ public class Vala.SemanticAnalyzer : CodeVisitor { public DataType garray_type; public Class gerror_type; public Interface list_type; - public Interface collection_type; public Interface map_type; public int next_lambda_id = 0; @@ -115,7 +114,6 @@ public class Vala.SemanticAnalyzer : CodeVisitor { var gee_ns = root_symbol.scope.lookup ("Gee"); if (gee_ns != null) { list_type = (Interface) gee_ns.scope.lookup ("List"); - collection_type = (Interface) gee_ns.scope.lookup ("Collection"); map_type = (Interface) gee_ns.scope.lookup ("Map"); }