Path params never initialized
yissachar opened this issue · 3 comments
yissachar commented
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.
nmorel commented
Ahah nice catch! I really need to add some tests to this project.
nmorel commented
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.
yissachar commented
It works great now 👍