With a utility method like the following, could replace the repeated two lines with a single line.
```java
public static void writeVInt(OutputStream out, byte[] workBuffer, int i){
int size = writeVInt(workBuffer, 0, i);
out.write(workBuffer, 0 size);
}
```
[ Full content available at: https://github.com/apache/accumulo/pull/669 ]
This message was relayed via gitbox.apache.org for [email protected]
