Skip to content

Commit 403dd48

Browse files
authored
review comment (#910)
1 parent e6c383b commit 403dd48

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/openrewrite/java/testing/mockito/RemoveInitMocksIfRunnersSpecified.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class RemoveInitMocksIfRunnersSpecified extends Recipe {
5353
private static final MethodMatcher INIT_MOCKS_MATCHER = new MethodMatcher("org.mockito.MockitoAnnotations initMocks(..)", false);
5454
private static final MethodMatcher OPEN_MOCKS_MATCHER = new MethodMatcher("org.mockito.MockitoAnnotations openMocks(..)", false);
5555
private static final MethodMatcher CLOSEABLE_MATCHER = new MethodMatcher("java.lang.AutoCloseable close()", false);
56-
private static List<AnnotationMatcher> BEFORE_AND_AFTER_MATCHERS = Arrays.asList(
56+
private static final List<AnnotationMatcher> BEFORE_AND_AFTER_MATCHERS = Arrays.asList(
5757
new AnnotationMatcher("@org.junit.jupiter.api.BeforeAll"),
5858
new AnnotationMatcher("@org.junit.jupiter.api.BeforeEach"),
5959
new AnnotationMatcher("@org.junit.BeforeClass"),

0 commit comments

Comments
 (0)