summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2023-04-17 15:40:02 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2023-04-17 15:40:02 +0200
commitbf09bcc74feaaca7a8e914e6c00fbc07caff899b (patch)
tree9f954a961599cb25b112619202be9fd5f4fe15a3
parent85f1f0fd60ce41a3d7bf0bd441a7ce383a1a7af4 (diff)
downloadvala-bf09bcc74feaaca7a8e914e6c00fbc07caff899b.tar.gz
gee: Fix reversed type-arguments
-rw-r--r--gee/hashmap.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/gee/hashmap.vala b/gee/hashmap.vala
index 40dc900b4..515a6a204 100644
--- a/gee/hashmap.vala
+++ b/gee/hashmap.vala
@@ -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;