Browse Source

minor fix

Nicolas Cannasse 13 năm trước cách đây
mục cha
commit
9c8acb74a7
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      std/flash/utils/TypedDictionary.hx

+ 1 - 1
std/flash/utils/TypedDictionary.hx

@@ -37,7 +37,7 @@ class TypedDictionary<K,T> extends Dictionary {
 		untyped this[k] = v;
 	}
 
-	public inline function exists( k : K ) {
+	public inline function exists( k : K ) : Bool {
 		return untyped this[k] != null;
 	}