Update HTTPRequest.hx

This commit is contained in:
Joshua Granick
2017-11-22 14:21:27 -08:00
committed by GitHub
parent a270a83890
commit 46b04c76c6

View File

@@ -58,7 +58,7 @@ private class AbstractHTTPRequest<T> implements _IHTTPRequest {
formData = new Map ();
headers = [];
method = GET;
timeout = #if lime_default_timeout Std.parseInt( Compiler.getDefine ("lime-default-timeout") ) #else 30000 #end;
timeout = #if lime_default_timeout Std.parseInt (Compiler.getDefine ("lime-default-timeout")) #else 30000 #end;
withCredentials = false;
#if !display