Browse Source

remove inline from String.fromCharCode

Simon Krajewski 11 years ago
parent
commit
8272cc4b00
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/python/_std/String.hx

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

@@ -196,7 +196,7 @@ extern class String extends StringImpl {
 		If [code] is negative or has another invalid value, the result is
 		unspecified.
 	**/
-	public static inline function fromCharCode( code : Int ) : String {
+	public static function fromCharCode( code : Int ) : String {
 		return StringImpl.fromCharCode(code);
 	}