@@ -134,12 +134,6 @@ public HttpResponse createXmlItemForHttpResponse(@javax.annotation.Nonnull XmlIt
134134
135135 HttpContent content = apiClient .new JacksonJsonHttpContent (xmlItem );
136136 com .google .api .client .http .HttpRequest httpRequest = apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .POST , genericUrl , content );
137- // Note: Header params passed via 'params' map are handled below
138- for (Map .Entry <String , Object > entry : params .entrySet ()) {
139- String key = entry .getKey ();
140- Object value = entry .getValue ();
141- // Check if this is a header parameter by name
142- }
143137 return httpRequest .execute ();
144138 }
145139
@@ -223,12 +217,6 @@ public HttpResponse fakeOuterBooleanSerializeForHttpResponse(@javax.annotation.N
223217
224218 HttpContent content = apiClient .new JacksonJsonHttpContent (body );
225219 com .google .api .client .http .HttpRequest httpRequest = apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .POST , genericUrl , content );
226- // Note: Header params passed via 'params' map are handled below
227- for (Map .Entry <String , Object > entry : params .entrySet ()) {
228- String key = entry .getKey ();
229- Object value = entry .getValue ();
230- // Check if this is a header parameter by name
231- }
232220 return httpRequest .execute ();
233221 }
234222
@@ -312,12 +300,6 @@ public HttpResponse fakeOuterCompositeSerializeForHttpResponse(@javax.annotation
312300
313301 HttpContent content = apiClient .new JacksonJsonHttpContent (body );
314302 com .google .api .client .http .HttpRequest httpRequest = apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .POST , genericUrl , content );
315- // Note: Header params passed via 'params' map are handled below
316- for (Map .Entry <String , Object > entry : params .entrySet ()) {
317- String key = entry .getKey ();
318- Object value = entry .getValue ();
319- // Check if this is a header parameter by name
320- }
321303 return httpRequest .execute ();
322304 }
323305
@@ -401,12 +383,6 @@ public HttpResponse fakeOuterNumberSerializeForHttpResponse(@javax.annotation.Nu
401383
402384 HttpContent content = apiClient .new JacksonJsonHttpContent (body );
403385 com .google .api .client .http .HttpRequest httpRequest = apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .POST , genericUrl , content );
404- // Note: Header params passed via 'params' map are handled below
405- for (Map .Entry <String , Object > entry : params .entrySet ()) {
406- String key = entry .getKey ();
407- Object value = entry .getValue ();
408- // Check if this is a header parameter by name
409- }
410386 return httpRequest .execute ();
411387 }
412388
@@ -490,12 +466,6 @@ public HttpResponse fakeOuterStringSerializeForHttpResponse(@javax.annotation.Nu
490466
491467 HttpContent content = apiClient .new JacksonJsonHttpContent (body );
492468 com .google .api .client .http .HttpRequest httpRequest = apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .POST , genericUrl , content );
493- // Note: Header params passed via 'params' map are handled below
494- for (Map .Entry <String , Object > entry : params .entrySet ()) {
495- String key = entry .getKey ();
496- Object value = entry .getValue ();
497- // Check if this is a header parameter by name
498- }
499469 return httpRequest .execute ();
500470 }
501471
@@ -583,12 +553,6 @@ public HttpResponse testBodyWithFileSchemaForHttpResponse(@javax.annotation.Nonn
583553
584554 HttpContent content = apiClient .new JacksonJsonHttpContent (body );
585555 com .google .api .client .http .HttpRequest httpRequest = apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .PUT , genericUrl , content );
586- // Note: Header params passed via 'params' map are handled below
587- for (Map .Entry <String , Object > entry : params .entrySet ()) {
588- String key = entry .getKey ();
589- Object value = entry .getValue ();
590- // Check if this is a header parameter by name
591- }
592556 return httpRequest .execute ();
593557 }
594558
@@ -709,12 +673,6 @@ public HttpResponse testBodyWithQueryParamsForHttpResponse(@javax.annotation.Non
709673
710674 HttpContent content = apiClient .new JacksonJsonHttpContent (body );
711675 com .google .api .client .http .HttpRequest httpRequest = apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .PUT , genericUrl , content );
712- // Note: Header params passed via 'params' map are handled below
713- for (Map .Entry <String , Object > entry : params .entrySet ()) {
714- String key = entry .getKey ();
715- Object value = entry .getValue ();
716- // Check if this is a header parameter by name
717- }
718676 return httpRequest .execute ();
719677 }
720678
@@ -810,12 +768,6 @@ public HttpResponse testClientModelForHttpResponse(@javax.annotation.Nonnull Cli
810768
811769 HttpContent content = apiClient .new JacksonJsonHttpContent (body );
812770 com .google .api .client .http .HttpRequest httpRequest = apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .PATCH , genericUrl , content );
813- // Note: Header params passed via 'params' map are handled below
814- for (Map .Entry <String , Object > entry : params .entrySet ()) {
815- String key = entry .getKey ();
816- Object value = entry .getValue ();
817- // Check if this is a header parameter by name
818- }
819771 return httpRequest .execute ();
820772 }
821773
@@ -924,12 +876,6 @@ public HttpResponse testEndpointParametersForHttpResponse(@javax.annotation.Nonn
924876
925877 HttpContent content = new EmptyContent ();
926878 com .google .api .client .http .HttpRequest httpRequest = apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .POST , genericUrl , content );
927- // Note: Header params passed via 'params' map are handled below
928- for (Map .Entry <String , Object > entry : params .entrySet ()) {
929- String key = entry .getKey ();
930- Object value = entry .getValue ();
931- // Check if this is a header parameter by name
932- }
933879 return httpRequest .execute ();
934880 }
935881
@@ -1304,12 +1250,6 @@ public HttpResponse testInlineAdditionalPropertiesForHttpResponse(@javax.annotat
13041250
13051251 HttpContent content = apiClient .new JacksonJsonHttpContent (param );
13061252 com .google .api .client .http .HttpRequest httpRequest = apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .POST , genericUrl , content );
1307- // Note: Header params passed via 'params' map are handled below
1308- for (Map .Entry <String , Object > entry : params .entrySet ()) {
1309- String key = entry .getKey ();
1310- Object value = entry .getValue ();
1311- // Check if this is a header parameter by name
1312- }
13131253 return httpRequest .execute ();
13141254 }
13151255
@@ -1388,12 +1328,6 @@ public HttpResponse testJsonFormDataForHttpResponse(@javax.annotation.Nonnull St
13881328
13891329 HttpContent content = null ;
13901330 com .google .api .client .http .HttpRequest httpRequest = apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .GET , genericUrl , content );
1391- // Note: Header params passed via 'params' map are handled below
1392- for (Map .Entry <String , Object > entry : params .entrySet ()) {
1393- String key = entry .getKey ();
1394- Object value = entry .getValue ();
1395- // Check if this is a header parameter by name
1396- }
13971331 return httpRequest .execute ();
13981332 }
13991333
@@ -1557,12 +1491,6 @@ public HttpResponse testQueryParameterCollectionFormatForHttpResponse(@javax.ann
15571491
15581492 HttpContent content = new EmptyContent ();
15591493 com .google .api .client .http .HttpRequest httpRequest = apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .PUT , genericUrl , content );
1560- // Note: Header params passed via 'params' map are handled below
1561- for (Map .Entry <String , Object > entry : params .entrySet ()) {
1562- String key = entry .getKey ();
1563- Object value = entry .getValue ();
1564- // Check if this is a header parameter by name
1565- }
15661494 return httpRequest .execute ();
15671495 }
15681496
0 commit comments