From: Rico Tzschichholz Date: Fri, 15 Oct 2021 10:21:48 +0000 (+0200) Subject: gee: Add missing type-arguments X-Git-Tag: 0.48.20~65 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ea53f2c1cb05be50744b3a017713e3f06828e2a;p=thirdparty%2Fvala.git gee: Add missing type-arguments --- diff --git a/gee/arraylist.vala b/gee/arraylist.vala index 80b20e9c2..c7829de45 100644 --- a/gee/arraylist.vala +++ b/gee/arraylist.vala @@ -169,7 +169,7 @@ public class Vala.ArrayList : List { // concurrent modification protection public int _stamp = 0; - public Iterator (ArrayList list) { + public Iterator (ArrayList list) { this.list = list; } diff --git a/gee/hashmap.vala b/gee/hashmap.vala index 8590c7dc1..0c2284466 100644 --- a/gee/hashmap.vala +++ b/gee/hashmap.vala @@ -195,7 +195,7 @@ public class Vala.HashMap : Map { private HashMap _map; - public KeySet (HashMap map) { + public KeySet (HashMap map) { this.map = map; } @@ -243,7 +243,7 @@ public class Vala.HashMap : Map { // concurrent modification protection private int _stamp; - public MapIterator (HashMap map) { + public MapIterator (HashMap map) { this.map = map; } @@ -287,7 +287,7 @@ public class Vala.HashMap : Map { // concurrent modification protection private int _stamp; - public KeyIterator (HashMap map) { + public KeyIterator (HashMap map) { this.map = map; } @@ -340,7 +340,7 @@ public class Vala.HashMap : Map { private HashMap _map; - public ValueCollection (HashMap map) { + public ValueCollection (HashMap map) { this.map = map; } @@ -395,7 +395,7 @@ public class Vala.HashMap : Map { // concurrent modification protection private int _stamp; - public ValueIterator (HashMap map) { + public ValueIterator (HashMap map) { this.map = map; } diff --git a/gee/hashset.vala b/gee/hashset.vala index ff20e8127..032811796 100644 --- a/gee/hashset.vala +++ b/gee/hashset.vala @@ -200,7 +200,7 @@ public class Vala.HashSet : Set { // concurrent modification protection private int _stamp = 0; - public Iterator (HashSet set) { + public Iterator (HashSet set) { this.set = set; }