]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
gee: Fix reversed type-arguments
authorRico Tzschichholz <ricotz@ubuntu.com>
Mon, 17 Apr 2023 13:40:02 +0000 (15:40 +0200)
committerRico Tzschichholz <ricotz@ubuntu.com>
Mon, 17 Apr 2023 13:40:02 +0000 (15:40 +0200)
gee/hashmap.vala

index 40dc900b43784a76bc09d4e51efd00d0630ea1f0..515a6a2049913038543db7eb35ca35dabdac39a2 100644 (file)
@@ -387,7 +387,7 @@ public class Vala.HashMap<K,V> : Map<K,V> {
                        }
                }
 
-               private HashMap<V,K> _map;
+               private HashMap<K,V> _map;
                private int _index = -1;
                private weak Node<K,V> _node;
                private weak Node<K,V> _next;