diff --git a/spring-web/src/test/java/org/springframework/web/service/invoker/HttpServiceProxyFactoryTests.java b/spring-web/src/test/java/org/springframework/web/service/invoker/HttpServiceProxyFactoryTests.java index 708945b71d7..167698514ad 100644 --- a/spring-web/src/test/java/org/springframework/web/service/invoker/HttpServiceProxyFactoryTests.java +++ b/spring-web/src/test/java/org/springframework/web/service/invoker/HttpServiceProxyFactoryTests.java @@ -27,11 +27,11 @@ import static org.mockito.Mockito.mock; /** * Unit tests for {@link HttpServiceProxyFactory}. + * * @author Rossen Stoyanchev */ public class HttpServiceProxyFactoryTests { - @Test void httpExchangeAdapterDecorator() { @@ -44,7 +44,6 @@ public class HttpServiceProxyFactoryTests { } - private interface Service { @GetExchange diff --git a/spring-web/src/test/java/org/springframework/web/service/registry/ClientHttpServiceRegistrarTests.java b/spring-web/src/test/java/org/springframework/web/service/registry/ClientHttpServiceRegistrarTests.java index 3373945b12f..7f737c92501 100644 --- a/spring-web/src/test/java/org/springframework/web/service/registry/ClientHttpServiceRegistrarTests.java +++ b/spring-web/src/test/java/org/springframework/web/service/registry/ClientHttpServiceRegistrarTests.java @@ -16,7 +16,6 @@ package org.springframework.web.service.registry; - import java.util.List; import java.util.Map; @@ -37,6 +36,7 @@ import static org.mockito.Mockito.mock; /** * Unit tests for {@link AbstractClientHttpServiceRegistrar}. + * * @author Rossen Stoyanchev */ public class ClientHttpServiceRegistrarTests { diff --git a/spring-web/src/test/java/org/springframework/web/service/registry/TestGroup.java b/spring-web/src/test/java/org/springframework/web/service/registry/TestGroup.java index d4ed645a0b1..97f14e463e9 100644 --- a/spring-web/src/test/java/org/springframework/web/service/registry/TestGroup.java +++ b/spring-web/src/test/java/org/springframework/web/service/registry/TestGroup.java @@ -16,7 +16,6 @@ package org.springframework.web.service.registry; - import java.util.Arrays; import java.util.LinkedHashSet; import java.util.Set; @@ -53,4 +52,5 @@ record TestGroup( group.packageClasses().addAll(Arrays.asList(packageClasses)); return group; } + } diff --git a/spring-web/src/test/java/org/springframework/web/service/registry/TestGroupRegistry.java b/spring-web/src/test/java/org/springframework/web/service/registry/TestGroupRegistry.java index 2f059d0674a..3a3ec15bc07 100644 --- a/spring-web/src/test/java/org/springframework/web/service/registry/TestGroupRegistry.java +++ b/spring-web/src/test/java/org/springframework/web/service/registry/TestGroupRegistry.java @@ -16,7 +16,6 @@ package org.springframework.web.service.registry; - import java.util.Arrays; import java.util.LinkedHashMap; import java.util.Map; @@ -76,4 +75,5 @@ class TestGroupRegistry implements GroupRegistry { return this.groupMap.computeIfAbsent(this.groupName, name -> new TestGroup(name, this.clientType)); } } + } diff --git a/spring-web/src/test/java/org/springframework/web/service/registry/basic/BasicClient.java b/spring-web/src/test/java/org/springframework/web/service/registry/basic/BasicClient.java index 6b81e0e7796..86f49a958f8 100644 --- a/spring-web/src/test/java/org/springframework/web/service/registry/basic/BasicClient.java +++ b/spring-web/src/test/java/org/springframework/web/service/registry/basic/BasicClient.java @@ -16,7 +16,6 @@ package org.springframework.web.service.registry.basic; - import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.service.annotation.GetExchange; import org.springframework.web.service.registry.HttpServiceClient; diff --git a/spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoA.java b/spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoA.java index cfd064d9e93..202abfb03e9 100644 --- a/spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoA.java +++ b/spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoA.java @@ -16,7 +16,6 @@ package org.springframework.web.service.registry.echo; - import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.service.annotation.GetExchange; diff --git a/spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoB.java b/spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoB.java index a32163ddf3c..44227ca0409 100644 --- a/spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoB.java +++ b/spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoB.java @@ -16,7 +16,6 @@ package org.springframework.web.service.registry.echo; - import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.service.annotation.GetExchange; diff --git a/spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoClientA.java b/spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoClientA.java index 7ab473f5844..9c25fc5e662 100644 --- a/spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoClientA.java +++ b/spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoClientA.java @@ -16,7 +16,6 @@ package org.springframework.web.service.registry.echo; - import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.service.annotation.GetExchange; import org.springframework.web.service.registry.HttpServiceClient; diff --git a/spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoClientB.java b/spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoClientB.java index 88368f0c931..e5b85840959 100644 --- a/spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoClientB.java +++ b/spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoClientB.java @@ -16,7 +16,6 @@ package org.springframework.web.service.registry.echo; - import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.service.annotation.GetExchange; import org.springframework.web.service.registry.HttpServiceClient; diff --git a/spring-web/src/test/java/org/springframework/web/service/registry/greeting/GreetingA.java b/spring-web/src/test/java/org/springframework/web/service/registry/greeting/GreetingA.java index f0993ffe04d..dd56c254ba6 100644 --- a/spring-web/src/test/java/org/springframework/web/service/registry/greeting/GreetingA.java +++ b/spring-web/src/test/java/org/springframework/web/service/registry/greeting/GreetingA.java @@ -16,7 +16,6 @@ package org.springframework.web.service.registry.greeting; - import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.service.annotation.GetExchange; diff --git a/spring-web/src/test/java/org/springframework/web/service/registry/greeting/GreetingB.java b/spring-web/src/test/java/org/springframework/web/service/registry/greeting/GreetingB.java index dfd6e8ee64e..c4ee2148d5c 100644 --- a/spring-web/src/test/java/org/springframework/web/service/registry/greeting/GreetingB.java +++ b/spring-web/src/test/java/org/springframework/web/service/registry/greeting/GreetingB.java @@ -16,7 +16,6 @@ package org.springframework.web.service.registry.greeting; - import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.service.annotation.GetExchange;