Fix checkstyle
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / handlers / Handler.java
index 31bfaeb52d508bffc9a972d6524702bc42cb8a4d..258c68aaf291db9a4c4028b9b405ba0e59c97b16 100644 (file)
@@ -5,14 +5,12 @@
  * 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.restconf.nb.rfc8040.handlers;
 
 /**
  * Handler for handling object prepared by provider for Restconf services.
  *
- * @param <T>
- *             specific type go object for handling it
+ * @param <T> specific type go object for handling it
  */
 interface Handler<T> {
 
@@ -26,8 +24,9 @@ interface Handler<T> {
     /**
      * Update object.
      *
-     * @param object
-     *             new object to update old object
+     * @param object new object to update old object
      */
-    default void update(T object) {}
+    default void update(final T object) {
+
+    }
 }