@@ -801,7 +801,7 @@ void async_list_as() throws ExecutionException, InterruptedException {
801
801
void get_withPathParamAndQueryParam_returningBean () {
802
802
803
803
final HelloDto dto = clientContext .request ()
804
- .path ("hello/43/2020-03-05" ).queryParam ("otherParam" , "other" ).queryParam ("foo" , null )
804
+ .path ("hello/43/2020-03-05" ).queryParam ("otherParam" , "other" ).queryParam ("foo" , ( Object ) null )
805
805
.GET ()
806
806
.bean (HelloDto .class );
807
807
@@ -813,7 +813,7 @@ void get_withPathParamAndQueryParam_returningBean() {
813
813
@ Test
814
814
void callBean () {
815
815
final HelloDto dto = clientContext .request ()
816
- .path ("hello/43/2020-03-05" ).queryParam ("otherParam" , "other" ).queryParam ("foo" , null )
816
+ .path ("hello/43/2020-03-05" ).queryParam ("otherParam" , "other" ).queryParam ("foo" , ( Object ) null )
817
817
.GET ()
818
818
.call ().bean (HelloDto .class ).execute ();
819
819
@@ -825,7 +825,7 @@ void callBean() {
825
825
@ Test
826
826
void callBeanAsync () throws ExecutionException , InterruptedException {
827
827
final CompletableFuture <HelloDto > future = clientContext .request ()
828
- .path ("hello/43/2020-03-05" ).queryParam ("otherParam" , "other" ).queryParam ("foo" , null )
828
+ .path ("hello/43/2020-03-05" ).queryParam ("otherParam" , "other" ).queryParam ("foo" , ( String ) null )
829
829
.GET ()
830
830
.call ().bean (HelloDto .class ).async ();
831
831
@@ -842,7 +842,7 @@ void async_whenComplete_returningBean() throws ExecutionException, InterruptedEx
842
842
final AtomicReference <HelloDto > ref = new AtomicReference <>();
843
843
844
844
final CompletableFuture <HelloDto > future = clientContext .request ()
845
- .path ("hello/43/2020-03-05" ).queryParam ("otherParam" , "other" ).queryParam ("foo" , null )
845
+ .path ("hello/43/2020-03-05" ).queryParam ("otherParam" , "other" ).queryParam ("foo" , ( String ) null )
846
846
.GET ()
847
847
.async ().bean (HelloDto .class );
848
848
@@ -872,7 +872,7 @@ void async_whenComplete_returningBeanWithHeaders() throws ExecutionException, In
872
872
final AtomicReference <HttpResponse <HelloDto >> ref = new AtomicReference <>();
873
873
874
874
final CompletableFuture <HttpResponse <HelloDto >> future = clientContext .request ()
875
- .path ("hello/43/2020-03-05" ).queryParam ("otherParam" , "other" ).queryParam ("foo" , null )
875
+ .path ("hello/43/2020-03-05" ).queryParam ("otherParam" , "other" ).queryParam ("foo" , ( String ) null )
876
876
.GET ()
877
877
.async ().as (HelloDto .class );
878
878
0 commit comments