vala r2073 - in trunk: . gobject vala



Author: juergbi
Date: Fri Nov 28 17:18:08 2008
New Revision: 2073
URL: http://svn.gnome.org/viewvc/vala?rev=2073&view=rev

Log:
2008-11-28  JÃrg Billeter  <j bitron ch>

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

	Remove unused fields


Modified:
   trunk/ChangeLog
   trunk/gobject/valaccodebasemodule.vala
   trunk/vala/valasemanticanalyzer.vala

Modified: trunk/gobject/valaccodebasemodule.vala
==============================================================================
--- trunk/gobject/valaccodebasemodule.vala	(original)
+++ trunk/gobject/valaccodebasemodule.vala	Fri Nov 28 17:18:08 2008
@@ -113,7 +113,6 @@
 	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 @@
 
 		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");
 		}

Modified: trunk/vala/valasemanticanalyzer.vala
==============================================================================
--- trunk/vala/valasemanticanalyzer.vala	(original)
+++ trunk/vala/valasemanticanalyzer.vala	Fri Nov 28 17:18:08 2008
@@ -59,7 +59,6 @@
 	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 @@
 		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");
 		}
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]