Fix checkstyle
[ovsdb.git] / library / impl / src / main / java / org / opendaylight / ovsdb / lib / notation / OvsdbSet.java
index 797dc18243bb857a5abb7511e77e50588fec1aba..566a995cd1ce70b11888e5726ffc88139f0d3000 100644 (file)
@@ -5,7 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.ovsdb.lib.notation;
 
 import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
@@ -22,7 +21,9 @@ public class OvsdbSet<T> extends ForwardingSet<T> {
 
     Set<T> target = new HashSet<>();
 
-    public OvsdbSet() {}
+    public OvsdbSet() {
+
+    }
 
     public OvsdbSet(Set<T> backing) {
         this.target = backing;