Procházet zdrojové kódy

no special method.

Nicolas Cannasse před 20 roky
rodič
revize
ed93ec1711
1 změnil soubory, kde provedl 1 přidání a 3 odebrání
  1. 1 3
      std/String.hx

+ 1 - 3
std/String.hx

@@ -13,8 +13,6 @@ extern class String {
 	function indexOf( value : String, startIndex : Int ) : Int;
 	function lastIndexOf( value : String, startIndex : Int ) : Int;
 	function split( delimiter : String ) : Array<String>;
-
-	/* added */
-	function sub( pos : Int, len : Int ) : String;
+	function substr( pos : Int, len : Int ) : String;
 
 }