소스 검색

* Remove some fetch duplicate overloads

Michaël Van Canneyt 1 년 전
부모
커밋
4dda20fc64
1개의 변경된 파일0개의 추가작업 그리고 3개의 파일을 삭제
  1. 0 3
      packages/rtl/src/web.pas

+ 0 - 3
packages/rtl/src/web.pas

@@ -1619,9 +1619,6 @@ Type
     procedure cancelAnimationFrame(aHandle: Integer);
     Procedure close;
     Function confirm(Const aMsg : String) :  boolean;
-    function fetch(resource: String; init: TJSObject): TJSPromise; overload; external name 'fetch';
-    //function fetch(resource: String): TJSPromise; overload; external name 'fetch';
-    function fetch(resource: String): TJSResponse; {$IFNDEF SkipAsync}async;{$ENDIF} overload; external name 'fetch';
     function fetch(resource: TJSObject; init: TJSObject): TJSPromise; overload; external name 'fetch';
     function fetch(resource: TJSObject): TJSPromise; overload; external name 'fetch';
     function asyncfetch(resource: String): TJSResponse; {$IFNDEF SkipAsync}async;{$ENDIF} overload; external name 'fetch';