Skip to content

Commit

Permalink
Reformat code with Spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
holubec-petr committed Sep 17, 2020
1 parent 5f2c25c commit 9c90ce5
Show file tree
Hide file tree
Showing 5 changed files with 219 additions and 163 deletions.
4 changes: 3 additions & 1 deletion src/main/java/org/mockito/BDDMockito.java
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,9 @@ public BDDStubber willThrow(Class<? extends Throwable> toBeThrown) {
* see original {@link org.mockito.internal.stubbing.DefaultLenientStubber#doThrow(Class, Class[])}
* @since 3.5.11
*/
public BDDStubber willThrow(Class<? extends Throwable> toBeThrown, Class<? extends Throwable>... nextToBeThrown) {
public BDDStubber willThrow(
Class<? extends Throwable> toBeThrown,
Class<? extends Throwable>... nextToBeThrown) {
return new BDDStubberImpl(mockitoStubber.doThrow(toBeThrown, nextToBeThrown));
}

Expand Down
Loading

0 comments on commit 9c90ce5

Please sign in to comment.