Bläddra i källkod

[java/cs] Fixed issue #1271

Caue Waneck 12 år sedan
förälder
incheckning
bfce30d0b1
2 ändrade filer med 2 tillägg och 3 borttagningar
  1. 0 1
      gencs.ml
  2. 2 2
      std/java/_std/sys/FileSystem.hx

+ 0 - 1
gencs.ml

@@ -1506,7 +1506,6 @@ let configure gen =
           write w "public static void Main()";
           begin_block w;
           (if Hashtbl.mem gen.gtypes (["cs"], "Boot") then write w "cs.Boot.init();"; newline w);
-          write w "global::";
           expr_s w { eexpr = TTypeExpr(TClassDecl cl); etype = t_dynamic; epos = Ast.null_pos };
           write w ".main();";
           end_block w;

+ 2 - 2
std/java/_std/sys/FileSystem.hx

@@ -95,7 +95,7 @@ class FileSystem {
 	**/
 	public static function createDirectory( path : String ) : Void
 	{
-		if (!new File(path).mkdir())
+		if (!new File(path).mkdirs())
 			throw "Cannot create dir " + path;
 	}
 
@@ -128,4 +128,4 @@ class FileSystem {
 		return Lib.array( f.list() );
 	}
 
-}
+}