libgee r27 - in trunk: . gee



Author: juergbi
Date: Sun Apr 13 16:41:59 2008
New Revision: 27
URL: http://svn.gnome.org/viewvc/libgee?rev=27&view=rev

Log:
2008-04-13  Juerg Billeter  <j bitron ch>

	* gee/arraylist.vala, gee/hashmap.vala, gee/hashset.vala: remove
	  obsolete non-null type syntax


Modified:
   trunk/ChangeLog
   trunk/gee/arraylist.vala
   trunk/gee/hashmap.vala
   trunk/gee/hashset.vala

Modified: trunk/gee/arraylist.vala
==============================================================================
--- trunk/gee/arraylist.vala	(original)
+++ trunk/gee/arraylist.vala	Sun Apr 13 16:41:59 2008
@@ -165,7 +165,7 @@
 		// concurrent modification protection
 		public int _stamp = 0;
 
-		public Iterator (construct ArrayList! list) {
+		public Iterator (construct ArrayList list) {
 		}
 
 		public bool next () {

Modified: trunk/gee/hashmap.vala
==============================================================================
--- trunk/gee/hashmap.vala	(original)
+++ trunk/gee/hashmap.vala	Sun Apr 13 16:41:59 2008
@@ -185,7 +185,7 @@
 
 		private HashMap<K,V> _map;
 
-		public KeySet (construct HashMap! map) {
+		public KeySet (construct HashMap map) {
 		}
 
 		public Type get_element_type () {
@@ -232,7 +232,7 @@
 		// concurrent modification protection
 		private int _stamp;
 
-		public KeyIterator (construct HashMap! map) {
+		public KeyIterator (construct HashMap map) {
 		}
 
 		public bool next () {
@@ -260,7 +260,7 @@
 
 		private HashMap<K,V> _map;
 
-		public ValueCollection (construct HashMap! map) {
+		public ValueCollection (construct HashMap map) {
 		}
 
 		public Type get_element_type () {
@@ -313,7 +313,7 @@
 		// concurrent modification protection
 		private int _stamp;
 
-		public ValueIterator (construct HashMap! map) {
+		public ValueIterator (construct HashMap map) {
 		}
 
 		public bool next () {

Modified: trunk/gee/hashset.vala
==============================================================================
--- trunk/gee/hashset.vala	(original)
+++ trunk/gee/hashset.vala	Sun Apr 13 16:41:59 2008
@@ -176,7 +176,7 @@
 		// concurrent modification protection
 		private int _stamp = 0;
 
-		public Iterator (construct HashSet! set) {
+		public Iterator (construct HashSet set) {
 		}
 
 		public bool next () {



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