nmorel/gwt-jackson-rest

Path params never initialized

yissachar opened this issue · 3 comments

I am trying to call an API with path params:

MyApiBuilder.getSomething()
  .addPathParam("foo", "bar")
  .send();

However this results in an NPE since in RestRequestBuilder the pathParams are never initialized.

Ahah nice catch! I really need to add some tests to this project.

Can you try the snapshot 0.2.2-SNAPSHOT please ?

If it works and you don't find any other issue, I'll generate a new release.

It works great now 👍