Fix CS warnings in sal-clustering-commons and enable enforcement
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / cluster / datastore / node / utils / stream / NormalizedNodeDataOutput.java
index 10f412c9e2ae357b30a6990fe65c10013cc69340..0c3422488383324c1a49840e04ee1989ea2ceb2c 100644 (file)
@@ -20,7 +20,9 @@ import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
 @Beta
 public interface NormalizedNodeDataOutput extends AutoCloseable, DataOutput {
     void writeNormalizedNode(NormalizedNode<?, ?> normalizedNode) throws IOException;
+
     void writePathArgument(PathArgument pathArgument) throws IOException;
+
     void writeYangInstanceIdentifier(YangInstanceIdentifier identifier) throws IOException;
 
     @Override