Skip to content

Commit a460231

Browse files
committed
Polishing
1 parent d128dd2 commit a460231

File tree

11 files changed

+4
-12
lines changed

11 files changed

+4
-12
lines changed

spring-web/src/test/java/org/springframework/web/service/invoker/HttpServiceProxyFactoryTests.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727

2828
/**
2929
* Unit tests for {@link HttpServiceProxyFactory}.
30+
*
3031
* @author Rossen Stoyanchev
3132
*/
3233
public class HttpServiceProxyFactoryTests {
3334

34-
3535
@Test
3636
void httpExchangeAdapterDecorator() {
3737

@@ -44,7 +44,6 @@ void httpExchangeAdapterDecorator() {
4444
}
4545

4646

47-
4847
private interface Service {
4948

5049
@GetExchange

spring-web/src/test/java/org/springframework/web/service/registry/ClientHttpServiceRegistrarTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
package org.springframework.web.service.registry;
1818

19-
2019
import java.util.List;
2120
import java.util.Map;
2221

@@ -37,6 +36,7 @@
3736

3837
/**
3938
* Unit tests for {@link AbstractClientHttpServiceRegistrar}.
39+
*
4040
* @author Rossen Stoyanchev
4141
*/
4242
public class ClientHttpServiceRegistrarTests {

spring-web/src/test/java/org/springframework/web/service/registry/TestGroup.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
package org.springframework.web.service.registry;
1818

19-
2019
import java.util.Arrays;
2120
import java.util.LinkedHashSet;
2221
import java.util.Set;
@@ -53,4 +52,5 @@ public static TestGroup ofPackageClasses(String name, ClientType clientType, Cla
5352
group.packageClasses().addAll(Arrays.asList(packageClasses));
5453
return group;
5554
}
55+
5656
}

spring-web/src/test/java/org/springframework/web/service/registry/TestGroupRegistry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
package org.springframework.web.service.registry;
1818

19-
2019
import java.util.Arrays;
2120
import java.util.LinkedHashMap;
2221
import java.util.Map;
@@ -76,4 +75,5 @@ private TestGroup getOrCreateGroup() {
7675
return this.groupMap.computeIfAbsent(this.groupName, name -> new TestGroup(name, this.clientType));
7776
}
7877
}
78+
7979
}

spring-web/src/test/java/org/springframework/web/service/registry/basic/BasicClient.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
package org.springframework.web.service.registry.basic;
1818

19-
2019
import org.springframework.web.bind.annotation.RequestParam;
2120
import org.springframework.web.service.annotation.GetExchange;
2221
import org.springframework.web.service.registry.HttpServiceClient;

spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoA.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
package org.springframework.web.service.registry.echo;
1818

19-
2019
import org.springframework.web.bind.annotation.RequestParam;
2120
import org.springframework.web.service.annotation.GetExchange;
2221

spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoB.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
package org.springframework.web.service.registry.echo;
1818

19-
2019
import org.springframework.web.bind.annotation.RequestParam;
2120
import org.springframework.web.service.annotation.GetExchange;
2221

spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoClientA.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
package org.springframework.web.service.registry.echo;
1818

19-
2019
import org.springframework.web.bind.annotation.RequestParam;
2120
import org.springframework.web.service.annotation.GetExchange;
2221
import org.springframework.web.service.registry.HttpServiceClient;

spring-web/src/test/java/org/springframework/web/service/registry/echo/EchoClientB.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
package org.springframework.web.service.registry.echo;
1818

19-
2019
import org.springframework.web.bind.annotation.RequestParam;
2120
import org.springframework.web.service.annotation.GetExchange;
2221
import org.springframework.web.service.registry.HttpServiceClient;

spring-web/src/test/java/org/springframework/web/service/registry/greeting/GreetingA.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
package org.springframework.web.service.registry.greeting;
1818

19-
2019
import org.springframework.web.bind.annotation.RequestParam;
2120
import org.springframework.web.service.annotation.GetExchange;
2221

0 commit comments

Comments
 (0)