Fix ALOTOF Checkstyle violation, and switch over to enforcement.
[ovsdb.git] / library / impl / src / main / java / org / opendaylight / ovsdb / lib / impl / ChannelConnectionHandler.java
index d4dfe59d177080cf8f0b21a2ea2a55e6fbfbd071..76fd0def8497f23cc7dbd1b9a8c85a4e801e8ab3 100644 (file)
@@ -10,14 +10,16 @@ package org.opendaylight.ovsdb.lib.impl;
 
 import io.netty.channel.ChannelFuture;
 import io.netty.channel.ChannelFutureListener;
-
 import org.opendaylight.ovsdb.lib.OvsdbClient;
 
 public class ChannelConnectionHandler implements ChannelFutureListener {
+
     OvsdbClient client;
+
     public ChannelConnectionHandler(OvsdbClient client) {
         this.client = client;
     }
+
     @Override
     public void operationComplete(ChannelFuture arg0) throws Exception {
         OvsdbConnectionService.channelClosed(client);