Fix eclipse/checkstyle warnings
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / tree / ConflictingModificationAppliedException.java
index 59610c28a3d557687a3fe9960f3d16918b593482..c14ff17eb5631a24622d0e4daca782879725e021 100644 (file)
@@ -12,22 +12,17 @@ import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
 /**
  * Exception thrown when a proposed change fails validation before being
  * applied into the Data Tree because the Data Tree has been modified
- * in way that a conflicting
- * node is present.
+ * in way that a conflicting node is present.
  */
 public class ConflictingModificationAppliedException extends DataValidationFailedException {
-
-    /**
-     *
-     */
     private static final long serialVersionUID = 1L;
 
-    public ConflictingModificationAppliedException(final YangInstanceIdentifier path, final String message, final Throwable cause) {
+    public ConflictingModificationAppliedException(final YangInstanceIdentifier path, final String message,
+            final Throwable cause) {
         super(path, message, cause);
     }
 
     public ConflictingModificationAppliedException(final YangInstanceIdentifier path, final String message) {
         super(path, message);
     }
-
 }