Skip to content

Commit

Permalink
Add missing closing paren
Browse files Browse the repository at this point in the history
  • Loading branch information
Norman Maurer committed Jul 16, 2013
1 parent 22be797 commit def3dbe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
* public class MyChannelInitializer extends {@link ChannelInitializer}&lt{@link Channel}&gt {
* {@code @Override}
* public void initChannel({@link Channel} channel) {
* channel.pipeline().addLast("idleStateHandler", new {@link IdleStateHandler}(60, 30, 0);
* channel.pipeline().addLast("idleStateHandler", new {@link IdleStateHandler}(60, 30, 0));
* channel.pipeline().addLast("myHandler", new MyHandler());
* }
* }
Expand Down

0 comments on commit def3dbe

Please sign in to comment.