Convert mdsal-singleton-common-api to a JPMS module
[mdsal.git] / singleton-service / mdsal-singleton-common-api / src / main / java / org / opendaylight / mdsal / singleton / common / api / ClusterSingletonServiceProvider.java
index 531483d043880da2bdd44a731dbd7fd6b0974403..6778a845b7966eae7d8cb4377669bf3c31ed2987 100644 (file)
@@ -5,7 +5,6 @@
  * 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.mdsal.singleton.common.api;
 
 /**
@@ -20,7 +19,6 @@ package org.opendaylight.mdsal.singleton.common.api;
  * a service group candidate must hold ownership of both these entities.
  */
 public interface ClusterSingletonServiceProvider extends AutoCloseable {
-
     /**
      * Method registers {@link ClusterSingletonService} to Provider.
      * Method returns {@link java.lang.RuntimeException} for unexpected state, so be careful with implementation.
@@ -35,5 +33,4 @@ public interface ClusterSingletonServiceProvider extends AutoCloseable {
      * @return {@link AutoCloseable} registration
      */
     ClusterSingletonServiceRegistration registerClusterSingletonService(ClusterSingletonService service);
-
 }