Skip to content

Commit f35fa87

Browse files
committed
Fix problems in SpringBootMockUtil reported by Checkstyle
1 parent 1cd781b commit f35fa87

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

spring-boot-test/src/main/java/org/springframework/boot/test/mock/mockito/SpringBootMockUtil.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
*
3737
* @author Andy Wilkinson
3838
*/
39-
class SpringBootMockUtil {
39+
final class SpringBootMockUtil {
4040

4141
private static final MockUtilAdapter adapter;
4242

@@ -50,6 +50,10 @@ class SpringBootMockUtil {
5050
}
5151
}
5252

53+
private SpringBootMockUtil() {
54+
55+
}
56+
5357
static MockCreationSettings<?> getMockSettings(Object mock) {
5458
return adapter.getMockSettings(mock);
5559
}

0 commit comments

Comments
 (0)