Skip to content

Commit 2768eef

Browse files
committed
Cosmetic fix.
1 parent a685224 commit 2768eef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/jsl/collider/SocketChannelReader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,11 +408,11 @@ public void runInThreadPool()
408408
int remaining = m_tail.ww.remaining();
409409
if (remaining == 0)
410410
{
411-
assert (m_tail.next == null);
411+
assert( m_tail.next == null );
412412
remaining = m_dataBlockCache.getBlockSize();
413413
m_tail.next = m_dataBlockCache.get(2);
414414
m_tail = m_tail.next;
415-
assert (remaining == m_tail.ww.capacity());
415+
assert( remaining == m_tail.ww.capacity() );
416416
}
417417
else
418418
{

0 commit comments

Comments
 (0)