Skip to content

Commit

Permalink
public
Browse files Browse the repository at this point in the history
  • Loading branch information
janolaveide committed Jun 13, 2021
1 parent e30f094 commit c710734
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,11 @@ private static JacksonJsonProvider jacksonProvider(ObjectMapper mapper) {
.orElseGet(() -> new JacksonJaxbJsonProvider());
}

protected <T> T invoke(Invocation i, Class<T> clazz) {
public <T> T invoke(Invocation i, Class<T> clazz) {
return invoker.invoke(i, clazz);
}

protected void invoke(Invocation i) {
public void invoke(Invocation i) {
invoker.invoke(i);
}

Expand Down

0 comments on commit c710734

Please sign in to comment.