remove not used variables from Request

This commit is contained in:
Tomasz Sowa 2022-08-31 21:33:54 +02:00
parent a7a338f28e
commit e378fcfe3b
1 changed files with 0 additions and 4 deletions

View File

@ -674,8 +674,6 @@ void Request::AddParam(const wchar_t * param_name, const wchar_t * param_value)
void Request::RemoveParam(const wchar_t * param_name)
{
ParamTab::iterator i;
for(size_t i=0 ; i < param_tab.size() ; )
{
if( param_tab[i].name == param_name )
@ -692,8 +690,6 @@ void Request::RemoveParam(const wchar_t * param_name)
void Request::RemoveParam(const std::wstring & param_name)
{
ParamTab::iterator i;
for(size_t i=0 ; i < param_tab.size() ; )
{
if( param_tab[i].name == param_name )