You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe it is just a mistake of the type Ctrl + C Ctrl + V, but the code today is as follows:
function TMVCRESTClient.AddQueryStringParam(const aName: string; aValue: Double): IMVCRESTClient; begin Result := AddPathParam(aName, aValue.ToString); end;
When in fact I believe it must be something like:
function TMVCRESTClient.AddQueryStringParam(const aName: string; aValue: Double): IMVCRESTClient; begin Result := AddQueryStringParam(aName, aValue.ToString); end;
The text was updated successfully, but these errors were encountered:
I believe it is just a mistake of the type Ctrl + C Ctrl + V, but the code today is as follows:
function TMVCRESTClient.AddQueryStringParam(const aName: string; aValue: Double): IMVCRESTClient;
begin
Result := AddPathParam(aName, aValue.ToString);
end;
When in fact I believe it must be something like:
function TMVCRESTClient.AddQueryStringParam(const aName: string; aValue: Double): IMVCRESTClient;
begin
Result := AddQueryStringParam(aName, aValue.ToString);
end;
The text was updated successfully, but these errors were encountered: