Fix checkstyle violations in sal-common-impl
[controller.git] / opendaylight / md-sal / sal-common-impl / src / main / java / org / opendaylight / controller / md / sal / common / impl / util / compat / DataNormalizer.java
index 10f53f05e31dcb572a0d6f9dcb09229d6354b5fd..df34b635cfa9a38eff8da59e39f0d2f361223a5c 100644 (file)
@@ -16,8 +16,10 @@ import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgum
 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
 
 /**
+ * Deprecated.
+ *
  * @deprecated This class provides compatibility between XML semantics
- * and {@link org.opendaylight.yangtools.yang.data.util.DataSchemaContextTree}
+ *     and {@link org.opendaylight.yangtools.yang.data.util.DataSchemaContextTree}
  */
 @Deprecated
 public class DataNormalizer {
@@ -54,7 +56,8 @@ public class DataNormalizer {
         return YangInstanceIdentifier.create(normalizedArgs.build());
     }
 
-    public DataNormalizationOperation<?> getOperation(final YangInstanceIdentifier legacy) throws DataNormalizationException {
+    public DataNormalizationOperation<?> getOperation(final YangInstanceIdentifier legacy)
+            throws DataNormalizationException {
         DataNormalizationOperation<?> currentOp = operation;
 
         for (PathArgument pathArgument : legacy.getPathArguments()) {
@@ -78,5 +81,4 @@ public class DataNormalizer {
     public DataNormalizationOperation<?> getRootOperation() {
         return operation;
     }
-
 }