Fix checkstyle issues to enforce it
[controller.git] / opendaylight / config / config-manager / src / test / java / org / opendaylight / controller / config / manager / impl / osgi / BlankTransactionServiceTrackerTest.java
index 7d426be66289e5a6b58b01702a9e17746c385255..ca21fef902448df925a4f7f472d1147d39fdb67c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2015 Cisco Systems, Inc. and others.  All rights reserved.
+ * Copyright (c) 2014, 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,
@@ -52,7 +52,8 @@ public class BlankTransactionServiceTrackerTest {
     @Test
     public void testValidationException() throws Exception {
         IllegalArgumentException argumentException = new IllegalArgumentException();
-        ValidationException validationException = ValidationException.createForSingleException(new ModuleIdentifier("m", "i"), argumentException);
+        ValidationException validationException = ValidationException
+                .createForSingleException(new ModuleIdentifier("m", "i"), argumentException);
         doThrow(validationException).when(blankTx).hit();
 
         tracker.addingService(getMockServiceReference());