We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abc7955 commit dd4e4f3Copy full SHA for dd4e4f3
src/main/java/com/arangodb/internal/velocystream/Connection.java
@@ -205,7 +205,7 @@ private ByteBuffer readBytes(final int len) throws IOException {
205
return ByteBuffer.wrap(buf).order(ByteOrder.LITTLE_ENDIAN);
206
}
207
208
- protected synchronized void readBytesIntoBuffer(final byte[] buf, final int off, final int len) throws IOException {
+ protected void readBytesIntoBuffer(final byte[] buf, final int off, final int len) throws IOException {
209
for (int readed = 0; readed < len;) {
210
final int read = inputStream.read(buf, off + readed, len - readed);
211
if (read == -1) {
0 commit comments