Fix checkstyle issues to enforce it
[controller.git] / opendaylight / config / config-api / src / main / java / org / opendaylight / controller / config / api / jmx / notifications / CommitJMXNotification.java
index ef538188914b32c21847eb81a79093725bb8bfac..2c794705636f7868746671660f8e97e3f2382dfc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+ * Copyright (c) 2013, 2017 Cisco Systems, Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
@@ -15,7 +15,8 @@ public class CommitJMXNotification extends ConfigJMXNotification {
     private static final String AFTER_COMMIT_MESSAGE_TEMPLATE = "Commit successful: %s";
 
     CommitJMXNotification(final NotificationBroadcasterSupport source, final String message) {
-        super(ConfigJMXNotification.NotificationType.COMMIT,  source, String.format(AFTER_COMMIT_MESSAGE_TEMPLATE, message));
+        super(ConfigJMXNotification.NotificationType.COMMIT, source,
+                String.format(AFTER_COMMIT_MESSAGE_TEMPLATE, message));
     }
 
     @Override
@@ -23,9 +24,5 @@ public class CommitJMXNotification extends ConfigJMXNotification {
         return "CommitJMXNotification{}";
     }
 
-    /**
-     *
-     */
     private static final long serialVersionUID = -8587623362011695514L;
-
 }