BUG-272: remove tabs from Java files
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / main / java / org / opendaylight / controller / sal / streams / websockets / WebSocketServerInitializer.java
index 65ae5d6fab1af08b9aaabaed03e1cd824513fa7f..983cd9bda98cb490e3c831488d542f43dbe28e0e 100644 (file)
@@ -12,14 +12,14 @@ import io.netty.handler.codec.http.HttpServerCodec;
  * {@link ChannelPipeline} of a {@link Channel}.
  */
 public class WebSocketServerInitializer extends
-               ChannelInitializer<SocketChannel> {
+        ChannelInitializer<SocketChannel> {
 
-       @Override
-       protected void initChannel(SocketChannel ch) throws Exception {
-               ChannelPipeline pipeline = ch.pipeline();
-               pipeline.addLast("codec-http", new HttpServerCodec());
-               pipeline.addLast("aggregator", new HttpObjectAggregator(65536));
-               pipeline.addLast("handler", new WebSocketServerHandler());
-       }
+    @Override
+    protected void initChannel(SocketChannel ch) throws Exception {
+        ChannelPipeline pipeline = ch.pipeline();
+        pipeline.addLast("codec-http", new HttpServerCodec());
+        pipeline.addLast("aggregator", new HttpObjectAggregator(65536));
+        pipeline.addLast("handler", new WebSocketServerHandler());
+    }
 
 }