Fix checkstyle in mdsal-binding-dom-codec
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / api / BindingNormalizedNodeCachingCodec.java
index 08a52655adb63a36e81820b146d251ab84a74d4f..71981b1290abbdc64b87c90b9a52ba9af2518f87 100644 (file)
@@ -11,10 +11,8 @@ import com.google.common.annotations.Beta;
 import org.opendaylight.yangtools.yang.binding.DataObject;
 
 /**
- * Caching variant of Binding to Normalized Node codec.
- *
- * Caching may introduce performance penalty to serialization / deserialization
- * but may decrease use of heap for repetitive objects.
+ * Caching variant of Binding to Normalized Node codec. Caching may introduce performance penalty to serialization and
+ * deserialization but may decrease use of heap for repetitive objects.
  *
  * @param <T> Binding representtion of data
  */
@@ -22,11 +20,8 @@ import org.opendaylight.yangtools.yang.binding.DataObject;
 public interface BindingNormalizedNodeCachingCodec<T extends DataObject> extends BindingNormalizedNodeCodec<T>,
         AutoCloseable {
     /**
-     * Invoking close will invalidate this codec and any of its child
-     * codecs and will invalidate cache.
-     *
-     * Any subsequent calls to this codec will fail with {@link IllegalStateException}
-     * thrown.
+     * Invoking close will invalidate this codec and any of its child codecs and will invalidate cache. Any subsequent
+     * calls to this codec will fail with {@link IllegalStateException} thrown.
      */
     @Override
     void close();