소스 검색

[cs] remove @:keep from ObjectMap iterators (hope that won't break anything)

Dan Korostelev 9 년 전
부모
커밋
62c7fd21ee
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      std/cs/_std/haxe/ds/ObjectMap.hx

+ 2 - 2
std/cs/_std/haxe/ds/ObjectMap.hx

@@ -476,7 +476,7 @@ import cs.NativeArray;
 }
 
 @:access(haxe.ds.ObjectMap)
-@:final @:keep
+@:final
 private class ObjectMapKeyIterator<T:{},V> {
 	var m:ObjectMap<T,V>;
 	var i:Int;
@@ -514,7 +514,7 @@ private class ObjectMapKeyIterator<T:{},V> {
 }
 
 @:access(haxe.ds.ObjectMap)
-@:final @:keep
+@:final
 private class ObjectMapValueIterator<K:{},T> {
 	var m:ObjectMap<K,T>;
 	var i:Int;