From 0a6e666857808e3d9972e59731fb14ef861312ba Mon Sep 17 00:00:00 2001 From: Sam Brannen <104798+sbrannen@users.noreply.github.com> Date: Wed, 5 Mar 2025 14:07:52 +0100 Subject: [PATCH] Ensure GenericTypeResolverTests compiles with Eclipse compiler --- .../java/org/springframework/core/GenericTypeResolverTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-core/src/test/java/org/springframework/core/GenericTypeResolverTests.java b/spring-core/src/test/java/org/springframework/core/GenericTypeResolverTests.java index 21ab4004fe5..41d10c17922 100644 --- a/spring-core/src/test/java/org/springframework/core/GenericTypeResolverTests.java +++ b/spring-core/src/test/java/org/springframework/core/GenericTypeResolverTests.java @@ -473,7 +473,7 @@ class GenericTypeResolverTests { public static class InheritsDefaultMethod implements InterfaceWithDefaultMethod { - static class ConcreteType implements AbstractType { + static class ConcreteType implements InterfaceWithDefaultMethod.AbstractType { } }