浏览代码

removed extra unused variable

SmerkyG 10 年之前
父节点
当前提交
f03ec57a88
共有 1 个文件被更改,包括 0 次插入2 次删除
  1. 0 2
      std/flash/_std/haxe/ds/IntMap.hx

+ 0 - 2
std/flash/_std/haxe/ds/IntMap.hx

@@ -101,13 +101,11 @@ private class IntMapKeysIterator {
 	var h:flash.utils.Dictionary;
 	var index : Int;
 	var nextIndex : Int;
-	var isReserved : Bool;
 
 	inline function new(h:flash.utils.Dictionary):Void {
 		this.h = h;
 		this.index = 0;
 		this.nextIndex = 0;
-		isReserved = false;
 	}
 
 	public inline function hasNext():Bool {