Comment punctuation cleanup

Motivation:
Commit d857b16d76 introduced some comments that had no punctuation.

Modifications:
Add punctuation.

Result:
Comments have punctuation.
This commit is contained in:
Scott Mitchell 2015-03-26 13:01:22 -07:00
parent d857b16d76
commit 23f881b382

View File

@ -247,17 +247,17 @@ public class Http2ConnectionHandlerTest {
public ChannelFuture answer(InvocationOnMock invocation) throws Throwable { public ChannelFuture answer(InvocationOnMock invocation) throws Throwable {
Object[] args = invocation.getArguments(); Object[] args = invocation.getArguments();
ChannelFutureListener listener = (ChannelFutureListener) args[0]; ChannelFutureListener listener = (ChannelFutureListener) args[0];
// Simulate that all streams have become inactive by the time the future completes // Simulate that all streams have become inactive by the time the future completes.
when(connection.activeStreams()).thenReturn(Collections.<Http2Stream>emptyList()); when(connection.activeStreams()).thenReturn(Collections.<Http2Stream>emptyList());
when(connection.numActiveStreams()).thenReturn(0); when(connection.numActiveStreams()).thenReturn(0);
// Simulate the future being completed // Simulate the future being completed.
listener.operationComplete(future); listener.operationComplete(future);
return future; return future;
} }
}).when(future).addListener(any(GenericFutureListener.class)); }).when(future).addListener(any(GenericFutureListener.class));
handler.close(ctx, promise); handler.close(ctx, promise);
handler.closeStream(stream, future); handler.closeStream(stream, future);
// Simulate another stream close call being made after the context should already be closed // Simulate another stream close call being made after the context should already be closed.
handler.closeStream(stream, future); handler.closeStream(stream, future);
verify(ctx, times(1)).close(any(ChannelPromise.class)); verify(ctx, times(1)).close(any(ChannelPromise.class));
} }