arangodb/java-velocypack

VPackBuilder misses add(Byte)

CuriusAlgo opened this issue · 1 comments

It has add(final String attribute, final Byte value), so I would have expected a add(final Byte value) to be present, like there are for all other data types. addTagged(final long tag, final Byte value) is also missing.

I created this PR #24 that should solve the problem.
Feel free to review or add comments to it.