remove obsolete non-null type syntax
authorJuerg Billeter <j@bitron.ch>
Sun, 13 Apr 2008 15:41:59 +0000 (15:41 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Sun, 13 Apr 2008 15:41:59 +0000 (15:41 +0000)
2008-04-13  Juerg Billeter  <j@bitron.ch>

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

svn path=/trunk/; revision=27

ChangeLog
gee/arraylist.vala
gee/hashmap.vala
gee/hashset.vala

index 28215bd..ec8b077 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-04-13  Jürg Billeter  <j@bitron.ch>
+
+       * gee/arraylist.vala, gee/hashmap.vala, gee/hashset.vala: remove
+         obsolete non-null type syntax
+
 2008-03-08  Jürg Billeter  <j@bitron.ch>
 
        * configure.ac: Post-release version bump
index 4a49b48..08fdcdc 100644 (file)
@@ -165,7 +165,7 @@ public class Gee.ArrayList<G> : Object, Iterable<G>, Collection<G>, List<G> {
                // concurrent modification protection
                public int _stamp = 0;
 
-               public Iterator (construct ArrayList! list) {
+               public Iterator (construct ArrayList list) {
                }
 
                public bool next () {
index 2b76d8a..737e3f6 100644 (file)
@@ -185,7 +185,7 @@ public class Gee.HashMap<K,V> : Object, Map<K,V> {
 
                private HashMap<K,V> _map;
 
-               public KeySet (construct HashMap! map) {
+               public KeySet (construct HashMap map) {
                }
 
                public Type get_element_type () {
@@ -232,7 +232,7 @@ public class Gee.HashMap<K,V> : Object, Map<K,V> {
                // concurrent modification protection
                private int _stamp;
 
-               public KeyIterator (construct HashMap! map) {
+               public KeyIterator (construct HashMap map) {
                }
 
                public bool next () {
@@ -260,7 +260,7 @@ public class Gee.HashMap<K,V> : Object, Map<K,V> {
 
                private HashMap<K,V> _map;
 
-               public ValueCollection (construct HashMap! map) {
+               public ValueCollection (construct HashMap map) {
                }
 
                public Type get_element_type () {
@@ -313,7 +313,7 @@ public class Gee.HashMap<K,V> : Object, Map<K,V> {
                // concurrent modification protection
                private int _stamp;
 
-               public ValueIterator (construct HashMap! map) {
+               public ValueIterator (construct HashMap map) {
                }
 
                public bool next () {
index 2bc9e3d..4cfdfd3 100644 (file)
@@ -176,7 +176,7 @@ public class Gee.HashSet<G> : Object, Iterable<G>, Collection<G>, Set<G> {
                // concurrent modification protection
                private int _stamp = 0;
 
-               public Iterator (construct HashSet! set) {
+               public Iterator (construct HashSet set) {
                }
 
                public bool next () {