Skip to content

Commit

Permalink
Fix tests to use proper method
Browse files Browse the repository at this point in the history
  • Loading branch information
asoldano committed Apr 21, 2017
1 parent 4172cff commit af2783f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@ public Response entityResponseTest() {
public Response nullEntityResponse() {
RuntimeDelegate rd = RuntimeDelegate.getInstance();
Response.ResponseBuilder rb = rd.createResponseBuilder();
return rb.entity(null).build();
return rb.entity((Object)null).build();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@ public Response entityResponseTest() {
public Response nullEntityResponse() {
RuntimeDelegate rd = RuntimeDelegate.getInstance();
Response.ResponseBuilder rb = rd.createResponseBuilder();
return rb.entity(null).build();
return rb.entity((Object)null).build();
}
}

0 comments on commit af2783f

Please sign in to comment.