Browse Source

closes issue #1998

Simon Krajewski 12 years ago
parent
commit
4bbc62d02a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/cpp/_std/haxe/ds/ObjectMap.hx

+ 1 - 1
std/cpp/_std/haxe/ds/ObjectMap.hx

@@ -47,7 +47,7 @@ class ObjectMap<K:haxe.Constraints.ObjectMapKey,V> implements Map.IMap<K,V> {
 
 	public function remove( key : K ) : Bool {
 		var id = untyped __global__.__hxcpp_obj_id(key);
-		return __Internal.remove(id);
+		__Internal.remove(id);
 		return __KeyRefs.remove(id);
 	}