@@ -801,7 +801,7 @@ void async_list_as() throws ExecutionException, InterruptedException {
801801 void get_withPathParamAndQueryParam_returningBean () {
802802
803803 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 )
805805 .GET ()
806806 .bean (HelloDto .class );
807807
@@ -813,7 +813,7 @@ void get_withPathParamAndQueryParam_returningBean() {
813813 @ Test
814814 void callBean () {
815815 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 )
817817 .GET ()
818818 .call ().bean (HelloDto .class ).execute ();
819819
@@ -825,7 +825,7 @@ void callBean() {
825825 @ Test
826826 void callBeanAsync () throws ExecutionException , InterruptedException {
827827 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 )
829829 .GET ()
830830 .call ().bean (HelloDto .class ).async ();
831831
@@ -842,7 +842,7 @@ void async_whenComplete_returningBean() throws ExecutionException, InterruptedEx
842842 final AtomicReference <HelloDto > ref = new AtomicReference <>();
843843
844844 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 )
846846 .GET ()
847847 .async ().bean (HelloDto .class );
848848
@@ -872,7 +872,7 @@ void async_whenComplete_returningBeanWithHeaders() throws ExecutionException, In
872872 final AtomicReference <HttpResponse <HelloDto >> ref = new AtomicReference <>();
873873
874874 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 )
876876 .GET ()
877877 .async ().as (HelloDto .class );
878878
0 commit comments