Enable checkstyle on objectcache and mockito-config
[yangtools.git] / common / mockito-configuration / src / main / java / org / mockito / configuration / ArgumentsExtractorVerifier.java
index d8983f40fbac5062cf694e36f2f12c92b122d1e5..ffc4a5d4865794527300fc8062aff54232ebc71a 100644 (file)
@@ -25,13 +25,15 @@ public class ArgumentsExtractorVerifier implements VerificationMode {
         InvocationsFinder finder = new InvocationsFinder();
         List<Invocation> actualInvocations = finder.findInvocations(data.getAllInvocations(), data.getWanted());
         if (actualInvocations.size() != 1) {
-            throw new MockitoException("This verifier can only be used with 1 invocation, got " + actualInvocations.size());
+            throw new MockitoException("This verifier can only be used with 1 invocation, got "
+                    + actualInvocations.size());
         }
         Invocation invocation = actualInvocations.get(0);
         arguments = invocation.getArguments();
         invocation.markVerified();
 
     }
+
     public Object[] getArguments() {
         return arguments;
     }