소스 검색

[lua] de-inline a lengthy filesystem method

Justin Donaldson 8 년 전
부모
커밋
5871abd027
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      std/lua/_std/sys/FileSystem.hx

+ 1 - 1
std/lua/_std/sys/FileSystem.hx

@@ -107,7 +107,7 @@ class FileSystem {
 		}
 	}
 
-	public inline static function createDirectory( path : String ) : Void {
+	public static function createDirectory( path : String ) : Void {
 
 		var path = haxe.io.Path.addTrailingSlash(path);
 		var _p = null;