Minor clean up in /base/

This commit is contained in:
Alex Dima
2016-02-03 11:57:24 +01:00
parent 4976ebd294
commit b6ad037ed8
5 changed files with 110 additions and 110 deletions

View File

@@ -96,7 +96,7 @@ export class RequestService extends BaseRequestService implements IThreadSynchro
* Make a cross origin request using NodeJS.
* Note: This method is also called from workers.
*/
public makeCrossOriginRequest(options: http.IXHROptions): TPromise<http.IXHRResponse> {
protected makeCrossOriginRequest(options: http.IXHROptions): TPromise<http.IXHRResponse> {
let timerVar: timer.ITimerEvent = timer.nullEvent;
return this.rawHttpServicePromise.then((rawHttpService: IRawHttpService) => {
return async.always(rawHttpService.xhr(options), ((xhr: http.IXHRResponse) => {