Fix checkstyle issues to enforce it
[controller.git] / opendaylight / config / config-manager / src / test / java / org / opendaylight / controller / config / manager / impl / util / OsgiRegistrationUtilTest.java
index 77d48f6ac5347bbf8c501a558c80be3d69807afe..6763facae57247ce7bb149d544c175035537804e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2015 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,
@@ -31,7 +31,8 @@ public class OsgiRegistrationUtilTest {
         ServiceRegistration<?> registration2 = mockServiceRegistration();
         doReturn(registration2).when(bundleContext).registerService(Object.class, "string", null);
 
-        AutoCloseable aggregatedRegister = OsgiRegistrationUtil.registerService(bundleContext, "string", String.class, Object.class);
+        AutoCloseable aggregatedRegister = OsgiRegistrationUtil.registerService(bundleContext, "string", String.class,
+                Object.class);
         aggregatedRegister.close();
 
         InOrder inOrder = Mockito.inOrder(registration, registration2);
@@ -64,6 +65,5 @@ public class OsgiRegistrationUtilTest {
 
     @Test
     public void testAggregate() throws Exception {
-
     }
-}
\ No newline at end of file
+}