summaryrefslogtreecommitdiff
path: root/gee/hashmap.vala
diff options
context:
space:
mode:
Diffstat (limited to 'gee/hashmap.vala')
-rw-r--r--gee/hashmap.vala4
1 files changed, 0 insertions, 4 deletions
diff --git a/gee/hashmap.vala b/gee/hashmap.vala
index 3868769b1..2b76d8a4a 100644
--- a/gee/hashmap.vala
+++ b/gee/hashmap.vala
@@ -202,7 +202,6 @@ public class Gee.HashMap<K,V> : Object, Map<K,V> {
public bool add (K key) {
assert_not_reached ();
- return false;
}
public void clear () {
@@ -211,7 +210,6 @@ public class Gee.HashMap<K,V> : Object, Map<K,V> {
public bool remove (K key) {
assert_not_reached ();
- return false;
}
public bool contains (K key) {
@@ -279,7 +277,6 @@ public class Gee.HashMap<K,V> : Object, Map<K,V> {
public bool add (V value) {
assert_not_reached ();
- return false;
}
public void clear () {
@@ -288,7 +285,6 @@ public class Gee.HashMap<K,V> : Object, Map<K,V> {
public bool remove (V value) {
assert_not_reached ();
- return false;
}
public bool contains (V value) {