From db9e4ce0645ab19e0c3b60fd94cc0df015fa0902 Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz Date: Fri, 15 Oct 2021 12:21:48 +0200 Subject: gee: Add missing type-arguments --- gee/arraylist.vala | 2 +- gee/hashmap.vala | 10 +++++----- gee/hashset.vala | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'gee') 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; } -- cgit v1.2.1