From 7f0f164a55abc8ec5cb41ade76fceb2f248c32f1 Mon Sep 17 00:00:00 2001 From: Juerg Billeter Date: Sun, 13 Apr 2008 15:41:59 +0000 Subject: [PATCH] remove obsolete non-null type syntax 2008-04-13 Juerg Billeter * gee/arraylist.vala, gee/hashmap.vala, gee/hashset.vala: remove obsolete non-null type syntax svn path=/trunk/; revision=27 --- ChangeLog | 5 +++++ gee/arraylist.vala | 2 +- gee/hashmap.vala | 8 ++++---- gee/hashset.vala | 2 +- 4 files changed, 11 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 28215bd..ec8b077 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-04-13 Jürg Billeter + + * gee/arraylist.vala, gee/hashmap.vala, gee/hashset.vala: remove + obsolete non-null type syntax + 2008-03-08 Jürg Billeter * configure.ac: Post-release version bump diff --git a/gee/arraylist.vala b/gee/arraylist.vala index 4a49b48..08fdcdc 100644 --- a/gee/arraylist.vala +++ b/gee/arraylist.vala @@ -165,7 +165,7 @@ public class Gee.ArrayList : Object, Iterable, Collection, List { // concurrent modification protection public int _stamp = 0; - public Iterator (construct ArrayList! list) { + public Iterator (construct ArrayList list) { } public bool next () { diff --git a/gee/hashmap.vala b/gee/hashmap.vala index 2b76d8a..737e3f6 100644 --- a/gee/hashmap.vala +++ b/gee/hashmap.vala @@ -185,7 +185,7 @@ public class Gee.HashMap : Object, Map { private HashMap _map; - public KeySet (construct HashMap! map) { + public KeySet (construct HashMap map) { } public Type get_element_type () { @@ -232,7 +232,7 @@ public class Gee.HashMap : Object, Map { // 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 : Object, Map { private HashMap _map; - public ValueCollection (construct HashMap! map) { + public ValueCollection (construct HashMap map) { } public Type get_element_type () { @@ -313,7 +313,7 @@ public class Gee.HashMap : Object, Map { // concurrent modification protection private int _stamp; - public ValueIterator (construct HashMap! map) { + public ValueIterator (construct HashMap map) { } public bool next () { diff --git a/gee/hashset.vala b/gee/hashset.vala index 2bc9e3d..4cfdfd3 100644 --- a/gee/hashset.vala +++ b/gee/hashset.vala @@ -176,7 +176,7 @@ public class Gee.HashSet : Object, Iterable, Collection, Set { // concurrent modification protection private int _stamp = 0; - public Iterator (construct HashSet! set) { + public Iterator (construct HashSet set) { } public bool next () { -- 2.7.4