]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
gee: Fix HashMap destructor name
authorRico Tzschichholz <ricotz@ubuntu.com>
Tue, 23 Sep 2014 10:04:13 +0000 (12:04 +0200)
committerRico Tzschichholz <ricotz@ubuntu.com>
Thu, 25 Sep 2014 11:48:07 +0000 (13:48 +0200)
(cherry picked from commit d9ed3e03a634a546c89d4ca6349ed4821020a3a7)

gee/hashmap.vala

index 1fb2ed310ec388b749405b6dd5e86b350143a1b8..33c2ef9bd5da34c0cd0c65864765dc61420f3597 100644 (file)
@@ -170,7 +170,7 @@ public class Vala.HashMap<K,V> : Map<K,V> {
                }
        }
 
-       ~HashSet () {
+       ~HashMap () {
                clear ();
        }