[libgee/0.4.x: 4/11] Fixing generics typo in HashMap's Value collection



commit 22056363ae6fc63f65e8ca9129d7db0cf161ddac
Author: Didier 'Ptitjes <ptitjes free fr>
Date:   Fri Sep 4 00:14:53 2009 +0200

    Fixing generics typo in HashMap's Value collection

 gee/hashmap.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gee/hashmap.vala b/gee/hashmap.vala
index 071a607..14cdb7b 100644
--- a/gee/hashmap.vala
+++ b/gee/hashmap.vala
@@ -271,7 +271,7 @@ public class Gee.HashMap<K,V> : Gee.AbstractMap<K,V> {
 		}
 	}
 
-	private class ValueCollection<K,V> : AbstractCollection<K> {
+	private class ValueCollection<K,V> : AbstractCollection<V> {
 		public HashMap<K,V> map { private set; get; }
 
 		public ValueCollection (HashMap map) {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]