From 2e8d7668892c28c4d959e838558dc4f3af1092e9 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Wed, 16 Nov 2022 13:54:34 -0800 Subject: [PATCH] Fix BindableRuntimeHintsRegistrarTests inner class to be static --- .../properties/bind/BindableRuntimeHintsRegistrarTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/BindableRuntimeHintsRegistrarTests.java b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/BindableRuntimeHintsRegistrarTests.java index 299f36649f..f8f6c0884c 100644 --- a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/BindableRuntimeHintsRegistrarTests.java +++ b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/BindableRuntimeHintsRegistrarTests.java @@ -420,7 +420,7 @@ class BindableRuntimeHintsRegistrarTests { } - public class WithWellKnownTypes implements ApplicationContextAware, EnvironmentAware { + public static class WithWellKnownTypes implements ApplicationContextAware, EnvironmentAware { private ApplicationContext applicationContext;