Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[std] keep IMap where it was before for now
  • Loading branch information
Simn committed Sep 25, 2017
1 parent 7952cd2 commit c463ccd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 5 additions & 1 deletion std/Map.hx
@@ -1 +1,5 @@
typedef Map<K, V> = haxe.ds.Map<K, V>;
typedef Map<K, V> = haxe.ds.Map<K, V>;

@:dox(hide)
@:deprecated
typedef IMap<K, V> = haxe.Constraints.IMap<K, V>;
6 changes: 1 addition & 5 deletions std/haxe/ds/Map.hx
Expand Up @@ -174,8 +174,4 @@ abstract Map<K,V>(IMap<K,V> ) {
@:from static inline function fromObjectMap<K:{ }, V>(map:ObjectMap<K,V>):Map<K,V> {
return cast map;
}
}

@:dox(hide)
@:deprecated
typedef IMap<K, V> = haxe.Constraints.IMap<K, V>;
}

0 comments on commit c463ccd

Please sign in to comment.