@@ -128,7 +128,7 @@ TRALClient = class(TRALComponent)
128128 // / event called when client thread finishes
129129 procedure OnThreadResponse (Sender: TObject; AResponse: TRALResponse; AException: StringRAL);
130130
131- function CreateClient : TRALClientHTTP;
131+ function CreateClient : TRALClientHTTP;
132132 // / Copy all properties of current TRALClientBase object
133133 procedure CopyProperties (ADest: TRALClient); virtual ;
134134
@@ -148,31 +148,31 @@ TRALClient = class(TRALComponent)
148148 function Clone (AOwner: TComponent = nil ): TRALClient; virtual ;
149149
150150 // / Defines method on the client: Delete.
151- procedure Delete (ARoute : StringRAL; var AResponse : TRALResponse); overload;
152- procedure Delete (ARoute : StringRAL; AOnResponse: TRALThreadClientResponse = nil ;
151+ procedure Delete (ARoute: StringRAL; var AResponse : TRALResponse); overload;
152+ procedure Delete (ARoute: StringRAL; AOnResponse: TRALThreadClientResponse = nil ;
153153 AExecBehavior : TRALExecBehavior = ebMultiThread); overload;
154154
155155 // / Defines method on the client: Get.
156- procedure Get (ARoute : StringRAL; var AResponse : TRALResponse); overload;
157- procedure Get (ARoute : StringRAL; AOnResponse: TRALThreadClientResponse = nil ;
156+ procedure Get (ARoute: StringRAL; var AResponse : TRALResponse); overload;
157+ procedure Get (ARoute: StringRAL; AOnResponse: TRALThreadClientResponse = nil ;
158158 AExecBehavior : TRALExecBehavior = ebMultiThread); overload;
159159
160160 // / Defines method on the client: Patch.
161- procedure Patch (ARoute : StringRAL; var AResponse : TRALResponse); overload;
162- procedure Patch (ARoute : StringRAL; AOnResponse: TRALThreadClientResponse = nil ;
161+ procedure Patch (ARoute: StringRAL; var AResponse : TRALResponse); overload;
162+ procedure Patch (ARoute: StringRAL; AOnResponse: TRALThreadClientResponse = nil ;
163163 AExecBehavior : TRALExecBehavior = ebMultiThread); overload;
164164
165165 // / Defines method on the client: Post.
166- procedure Post (ARoute : StringRAL; var AResponse : TRALResponse); overload;
167- procedure Post (ARoute : StringRAL; AOnResponse: TRALThreadClientResponse = nil ;
166+ procedure Post (ARoute: StringRAL; var AResponse : TRALResponse); overload;
167+ procedure Post (ARoute: StringRAL; AOnResponse: TRALThreadClientResponse = nil ;
168168 AExecBehavior : TRALExecBehavior = ebMultiThread); overload;
169169
170170 // / Defines method on the client: Put.
171- procedure Put (ARoute : StringRAL; var AResponse : TRALResponse); overload;
172- procedure Put (ARoute : StringRAL; AOnResponse: TRALThreadClientResponse = nil ;
173- AExecBehavior : TRALExecBehavior = ebMultiThread); overload;
171+ procedure Put (ARoute: StringRAL; var AResponse : TRALResponse); overload;
172+ procedure Put (ARoute: StringRAL; AOnResponse: TRALThreadClientResponse = nil ;
173+ AExecBehavior: TRALExecBehavior = ebMultiThread); overload;
174174
175- property Request : TRALRequest read FRequest;
175+ property Request: TRALRequest read FRequest;
176176 published
177177 property Authentication: TRALAuthClient read FAuthentication write SetAuthentication;
178178 property BaseURL: TStrings read FBaseURL write SetBaseURL;
@@ -304,7 +304,7 @@ procedure TRALClient.ExecuteThread(ARoute: StringRAL; AMethod: TRALMethod;
304304function TRALClient.ExecuteSingle (ARoute: StringRAL; AMethod: TRALMethod): TRALResponse;
305305var
306306 vClient: TRALClientHTTP;
307- vRequest : TRALRequest;
307+ vRequest: TRALRequest;
308308begin
309309 Result := TRALClientResponse.Create(Self);
310310 vRequest := TRALClientRequest.Create(Self);
0 commit comments