2
0
Nicolas Cannasse 17 жил өмнө
parent
commit
1c439f9e86
1 өөрчлөгдсөн 1 нэмэгдсэн , 2 устгасан
  1. 1 2
      genswf8.ml

+ 1 - 2
genswf8.ml

@@ -191,10 +191,9 @@ let unprotect a = !protect_all || a = "" || a = "_" || (a.[0] = '_' && a.[1] !=
 let rec is_protected_path path ext =
 	match path with
 	| ["flash"] , "Boot" | ["flash"] , "Lib" -> false
-	| ["flash"],"__FlashXml" -> true
 	| "flash" :: _ , _ | [] , "flash" -> ext
 	| [] , "Array" | [] , "Math" | [] , "Date" | [] , "String" | [] , "Bool" -> true
-	| [] , "Int" | [] , "Float" | [] , "Xml" -> true
+	| [] , "Int" | [] , "Float" -> true
 	| "_global" :: l , n -> is_protected_path (l,n) ext
 	| _ -> false