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 a685224 commit 2768eefCopy full SHA for 2768eef
src/main/java/org/jsl/collider/SocketChannelReader.java
@@ -408,11 +408,11 @@ public void runInThreadPool()
408
int remaining = m_tail.ww.remaining();
409
if (remaining == 0)
410
{
411
- assert (m_tail.next == null);
+ assert( m_tail.next == null );
412
remaining = m_dataBlockCache.getBlockSize();
413
m_tail.next = m_dataBlockCache.get(2);
414
m_tail = m_tail.next;
415
- assert (remaining == m_tail.ww.capacity());
+ assert( remaining == m_tail.ww.capacity() );
416
}
417
else
418
0 commit comments