Fix checkstyle issues reported by odlparent-3.0.0's checkstyle
[yangtools.git] / common / util / src / test / java / org / opendaylight / yangtools / util / concurrent / QueuedNotificationManagerTest.java
index 8d6c9d473fad50d862011be480cfaec7f768bd41..8ce87cab59c213dee9aa26c51ca3ef7365a47a97 100644 (file)
@@ -56,9 +56,9 @@ public class QueuedNotificationManagerTest {
             reset(expCount);
         }
 
-        void reset(final int expCount) {
-            this.expCount = expCount;
-            latch = new CountDownLatch(expCount);
+        void reset(final int newExpCount) {
+            this.expCount = newExpCount;
+            latch = new CountDownLatch(newExpCount);
             actual.clear();
         }