ソースを参照

remove void return

Dan Korostelev 11 年 前
コミット
3a5d37704a
1 ファイル変更1 行追加1 行削除
  1. 1 1
      std/python/_std/Reflect.hx

+ 1 - 1
std/python/_std/Reflect.hx

@@ -45,7 +45,7 @@ class Reflect {
 
 	@:keep
 	public static inline function setField( o : Dynamic, field : String, value : Dynamic ) : Void {
-		return Builtin.setattr(o, handleKeywords(field), value);
+		Builtin.setattr(o, handleKeywords(field), value);
 	}
 
 	public static function getProperty( o : Dynamic, field : String ) : Dynamic