+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:
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;
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");
}
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;
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");
}