You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-web/src/main/java/org/springframework/web/service/registry/HttpServiceProxyRegistryFactoryBean.java
+10-15
Original file line number
Diff line number
Diff line change
@@ -101,10 +101,9 @@ public void afterPropertiesSet() {
101
101
Assert.notNull(this.beanClassLoader, "BeanClassLoader not initialized");
102
102
103
103
// Create the groups from the metadata
104
-
Set<ProxyHttpServiceGroup> groups = this.groupsMetadata.groups(this.beanClassLoader)
105
-
.stream()
106
-
.map(ProxyHttpServiceGroup::new)
107
-
.collect(Collectors.toSet());
104
+
Set<ProxyHttpServiceGroup> groups = this.groupsMetadata.groups(this.beanClassLoader).stream()
Copy file name to clipboardExpand all lines: spring-web/src/test/java/org/springframework/web/client/support/RestClientProxyRegistryIntegrationTests.java
0 commit comments