]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Remove unused fields
authorJürg Billeter <j@bitron.ch>
Fri, 28 Nov 2008 17:18:08 +0000 (17:18 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Fri, 28 Nov 2008 17:18:08 +0000 (17:18 +0000)
2008-11-28  Jürg Billeter  <j@bitron.ch>

* vala/valasemanticanalyzer.vala:
* gobject/valaccodebasemodule.vala:

Remove unused fields

svn path=/trunk/; revision=2073

ChangeLog
gobject/valaccodebasemodule.vala
vala/valasemanticanalyzer.vala

index 5a166099346cffbffe6cfb2a13fa45e3e38dc770..1888c25b236e3a507c53c493ebf53da6f52a9bd8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-11-28  Jürg Billeter  <j@bitron.ch>
+
+       * vala/valasemanticanalyzer.vala:
+       * gobject/valaccodebasemodule.vala:
+
+       Remove unused fields
+
 2008-11-28  Jürg Billeter  <j@bitron.ch>
 
        * vala/valabinaryexpression.vala:
index 0afac8282dc3a43fa92aee1a94c8a8449c010c01..2d7fc1ac7b87a9cf93b4f8964e03a8f4df846662 100644 (file)
@@ -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");
                }
index 937e846823d66fb37be27b39b2bb42c705aa976a..259b7d712959cdf300463cde5fb6a0ff9ddddf74 100644 (file)
@@ -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");
                }