formatting

This commit is contained in:
spencergibb
2022-01-26 16:31:33 -05:00
parent 29ea80fae1
commit 14efdc71c7
4 changed files with 7 additions and 6 deletions

View File

@@ -22,8 +22,8 @@ import org.springframework.context.ApplicationEvent;
* Event to be published after the local service instance registers itself with a
* discovery service.
*
* @author Spencer Gibb
* @param <T> - type of configuration
* @author Spencer Gibb
*/
@SuppressWarnings("serial")
public class InstanceRegisteredEvent<T> extends ApplicationEvent {

View File

@@ -64,10 +64,10 @@ public class ReactorLoadBalancerExchangeFilterFunction implements LoadBalancedEx
private final List<LoadBalancerClientRequestTransformer> transformers;
/**
* @deprecated Deprecated in favor of
* {@link #ReactorLoadBalancerExchangeFilterFunction(ReactiveLoadBalancer.Factory, LoadBalancerProperties, List)}.
* @param loadBalancerFactory the loadbalancer factory
* @param properties the properties for SC LoadBalancer
* @deprecated Deprecated in favor of
* {@link #ReactorLoadBalancerExchangeFilterFunction(ReactiveLoadBalancer.Factory, LoadBalancerProperties, List)}.
*/
@Deprecated
public ReactorLoadBalancerExchangeFilterFunction(ReactiveLoadBalancer.Factory<ServiceInstance> loadBalancerFactory,

View File

@@ -44,8 +44,8 @@ import org.springframework.util.StringUtils;
* re-initialized, the changes are available immediately to any component that is using
* the <code>@ConfigurationProperties</code> bean.
*
* @see RefreshScope for a deeper and optionally more focused refresh of bean components.
* @author Dave Syer
* @see RefreshScope for a deeper and optionally more focused refresh of bean components.
*
*/
@Component

View File

@@ -36,8 +36,9 @@ import org.springframework.test.context.ActiveProfiles;
import static org.assertj.core.api.BDDAssertions.then;
@SpringBootTest(classes = Application.class, properties = { "encrypt.key:deadbeef",
"spring.cloud.bootstrap.name:custom", "spring.cloud.bootstrap.enabled=true" })
@SpringBootTest(classes = Application.class,
properties = { "encrypt.key:deadbeef", "spring.cloud.bootstrap.name:custom",
"spring.cloud.bootstrap.enabled=true" })
@ActiveProfiles("encrypt")
public class BootstrapOrderingCustomPropertySourceIntegrationTests {