Explorar o código

Lua : Drop an unnecessary type dodge

Justin Donaldson %!s(int64=10) %!d(string=hai) anos
pai
achega
f35cf26d7a
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      std/lua/_std/Array.hx

+ 1 - 1
std/lua/_std/Array.hx

@@ -166,7 +166,7 @@ class Array<T> {
 		var cur_length = 0;
 		return {
 			hasNext : function() return cur_length < length,
-			next : function() return untyped this[cur_length++]
+			next : function() return this[cur_length++]
 		}
 	}